/**
 * Rajaaram luxury layer  -  aligned with internal Replit / React prototype tokens.
 * Loaded after legacy theme to override.
 */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600&family=Montserrat:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* Luxury-Booking-Site artifacts/rajaaram-site/src/index.css (:root HSL tokens) */
  --lux-primary: hsl(34 53% 47%); /* #b88239 */
  --lux-primary-hex: #b88239;
  --lux-primary-soft: rgba(184, 130, 57, 0.12);
  --lux-foreground: hsl(25 10% 15%); /* ~#2c2319 — Replit text-foreground */
  --lux-ink: var(--lux-foreground);
  --lux-muted-foreground: hsl(25 5% 40%); /* Replit muted-foreground */
  --lux-ink-muted: rgba(44, 35, 25, 0.62); /* legacy body tint; prefer --lux-muted-foreground for hero copy */
  --lux-bg: hsl(0 0% 100%);
  --lux-secondary: hsl(40 25% 95%); /* Replit secondary — #f5f2ec */
  --lux-bg-tint: hsl(40 30% 97%); /* Replit card — #faf9f7 */
  --lux-border: hsl(40 20% 90%); /* Replit border */
  --lux-line: rgba(184, 130, 57, 0.15);
  /*
   * Ceremonies.tsx hero: bg-secondary/30 — warm wash over white (falls back if color-mix unsupported).
   */
  --lux-hero-ceremonies-bg: color-mix(in srgb, var(--lux-secondary) 30%, white);
  --lux-hero-band: var(--lux-hero-ceremonies-bg);
  /* Reserve space for fixed .lux-header (logo + padding + language row) */
  --lux-header-h: 6rem;
  --font-heading: "Montserrat", "Heebo", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
  --font-serif: "Lora", "Georgia", "Times New Roman", serif;
  /* Preparation band (reference: warm paper + gold rules) */
  --lux-preparation-bg: #f9f8f6;
  --lux-preparation-rule: #b89b73;
  --lux-preparation-text: #333333;
}

@supports not (background: color-mix(in srgb, white, black)) {
  :root {
    /* ~Replit bg-secondary/30 on white when color-mix is unavailable */
    --lux-hero-ceremonies-bg: #f7f4ef;
    --lux-hero-band: #f7f4ef;
  }
}

html {
  scroll-padding-top: var(--lux-header-h);
  /*
   * Legacy style.css sets html background to #222 — during scroll-reveal (opacity 0→1)
   * that dark tone flashes behind sections. Use brand gold instead.
   */
  background-color: var(--lux-primary-hex) !important;
}

/*
 * Replit-style motion (framer-motion): soft fade + lift on load / in view.
 * Paired with public/js/luxury-motion.js
 */
.lux-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--lux-reveal-d, 0s);
  will-change: opacity, transform;
}

/* Heroes paint their own gradients — skip so we do not flatten them */
.lux-reveal:not(.lux-reveal--hero) {
  background-color: var(--lux-bg);
}

.lux-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lux-reveal.lux-reveal--from-left {
  transform: translate3d(-22px, 0, 0);
}

.lux-reveal.lux-reveal--from-right {
  transform: translate3d(22px, 0, 0);
}

/* Beat specificity of .lux-reveal--from-left / --from-right (3 classes) so visible state actually clears the transform */
.lux-reveal.lux-reveal--from-left.is-visible,
.lux-reveal.lux-reveal--from-right.is-visible {
  transform: translate3d(0, 0, 0);
}

/* JourneyDetail/CeremonyDetail hero sequencing */
.lux-reveal.lux-reveal--delay {
  transition-delay: 0.2s;
}

.lux-reveal.lux-reveal--delay-sm {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .lux-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

/* Scoped reset when luxury layout active */
/* WOW is disabled on lux pages — never leave .wow nodes invisible */
body.lux-scope .wow {
  visibility: visible !important;
  animation-name: none !important;
}

body.lux-scope {
  display: block !important;
  background: var(--lux-bg) !important;
  color: var(--lux-ink-muted) !important;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  padding-top: var(--lux-header-h);
  overflow-x: clip;
  overflow-y: auto;
}

body.lux-scope #wrapper,
body.lux-scope .header-fullwidth,
body.lux-scope #mo-button-close {
  display: none !important;
}

body.lux-scope .float-text {
  display: none !important;
}

body.lux-scope #background {
  display: none !important;
}

body.lux-scope #content-absolute {
  position: relative !important;
  top: auto !important;
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  z-index: 0;
  max-width: 100%;
  /* Do not set overflow-x here: paired with visible Y it becomes overflow-y:auto and
     traps scroll inside this box while legacy SmoothScroll moves only the window. */
  overflow: visible;
}

body.lux-scope #menu-overlay {
  display: none !important;
}

/*
 * Legacy `style.css` targets bare `header` as the fixed top bar (80px, z-index 1001).
 * Luxury pages use real <header> elements for in-flow heroes (FAQ, contact, gallery).
 * Reset those so only `.lux-header` behaves as site chrome.
 */
body.lux-scope header:not(.lux-header) {
  position: static;
  width: 100%;
  height: auto;
  top: auto;
  left: auto;
  z-index: auto;
  background: transparent;
  border-bottom: none;
  -webkit-transition: none;
  transition: none;
}

/* ---- Fixed header ---- */
.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lux-line);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.lux-header.is-top:not(.is-open) {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.lux-header--transparent.is-top:not(.is-open) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.lux-header--transparent.is-top:not(.is-open) .lux-brand-img {
  filter: brightness(0) invert(1);
}

.lux-header--transparent.is-top:not(.is-open) .lux-nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
}

.lux-header--transparent.is-top:not(.is-open) .lux-nav-cta {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff !important;
}

.lux-header--transparent.is-top:not(.is-open) .lux-burger {
  color: #fff;
}

.lux-header.is-scrolled .lux-burger,
.lux-header.is-open .lux-burger {
  color: var(--lux-ink);
}

.lux-header.is-scrolled,
.lux-header.is-open {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: var(--lux-line);
  box-shadow: 0 6px 30px rgba(44, 35, 25, 0.06);
}

.lux-header.is-scrolled .lux-brand-img,
.lux-header.is-open .lux-brand-img {
  filter: none !important;
}

.lux-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.lux-brand-img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  transition: filter 0.35s ease;
}

/* Must beat Bootstrap `.d-flex { display:flex !important }` if present */
.lux-header-actions {
  display: none !important;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Compact language control  -  globe + code + refined dropdown */
.lux-lang {
  position: relative;
  flex-shrink: 0;
}

.lux-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.5rem 0.36rem 0.36rem;
  margin: 0;
  border: 1px solid rgba(44, 35, 25, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--lux-ink);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lux-lang__trigger:hover,
.lux-lang__trigger:focus-visible {
  border-color: rgba(44, 35, 25, 0.34);
  background: #fff;
  box-shadow: none;
  outline: none;
}

.lux-lang.is-open .lux-lang__trigger {
  border-color: var(--lux-primary);
  color: var(--lux-primary);
}

.lux-lang__globe {
  display: flex;
  opacity: 0.72;
}

.lux-lang.is-open .lux-lang__globe {
  opacity: 1;
}

.lux-lang__code {
  min-width: 1.35rem;
  text-align: center;
}

.lux-lang__caret {
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  opacity: 0.65;
}

.lux-lang.is-open .lux-lang__caret {
  transform: rotate(-135deg);
  margin-top: 0.12rem;
  opacity: 1;
}

.lux-lang__dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 14.5rem;
  padding: 0.45rem;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(44, 35, 25, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(44, 35, 25, 0.1);
  backdrop-filter: none;
  z-index: 100600;
}

.lux-lang__dropdown[hidden] {
  display: none !important;
}

.lux-lang__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.58rem 0.65rem;
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(44, 35, 25, 0.85) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

a.lux-lang__item:hover,
a.lux-lang__item:focus-visible {
  background: rgba(44, 35, 25, 0.06);
  color: rgba(44, 35, 25, 0.96) !important;
  transform: none;
  outline: none;
}

.lux-lang__item--current {
  color: rgba(44, 35, 25, 0.98) !important;
  background: rgba(44, 35, 25, 0.08);
  cursor: default;
  font-weight: 500;
}

.lux-lang__name {
  flex: 1;
  line-height: 1.4;
  text-align: left;
}

/* ISO code as a refined capsule (desktop dropdown + drawer) */
.lux-lang__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  padding: 0.24rem 0.42rem;
  border-radius: 6px;
  border: 1px solid rgba(44, 35, 25, 0.2);
  background: rgba(44, 35, 25, 0.04);
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.62);
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.lux-lang__badge--current {
  border-color: rgba(44, 35, 25, 0.45);
  background: rgba(44, 35, 25, 0.88);
  color: #fff;
  box-shadow: none;
}

a.lux-lang__item:hover .lux-lang__badge,
a.lux-lang__item:focus-visible .lux-lang__badge {
  border-color: rgba(44, 35, 25, 0.34);
  background: rgba(44, 35, 25, 0.1);
  color: rgba(44, 35, 25, 0.9);
}

.lux-header--transparent.is-top:not(.is-open) .lux-lang__trigger {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

.lux-header--transparent.is-top:not(.is-open) .lux-lang__trigger:hover,
.lux-header--transparent.is-top:not(.is-open) .lux-lang__trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.18);
}

.lux-header--transparent.is-top:not(.is-open) .lux-lang.is-open .lux-lang__trigger {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--lux-primary);
  color: var(--lux-primary);
}

@media (min-width: 1100px) {
  .lux-header-actions {
    display: flex !important;
  }
}

.lux-nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

@media (min-width: 1100px) {
  .lux-nav-desktop {
    display: flex;
  }
}

.lux-nav-link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.78) !important;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.lux-nav-link:hover,
.lux-nav-link:focus-visible {
  color: var(--lux-primary) !important;
}

.lux-nav-cta {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--lux-primary);
  color: var(--lux-primary) !important;
  background: transparent;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.lux-nav-cta:hover,
.lux-nav-cta:focus-visible {
  background: var(--lux-primary);
  color: #fff !important;
}

.lux-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--lux-ink);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1099px) {
  /*
   * Larger lockup on small screens + room under fixed bar for scroll-padding /
   * body offset (hero anchors).
   */
  :root {
    --lux-header-h: calc(6.1rem + env(safe-area-inset-top, 0px));
  }

  /*
   * Top-center logo + burger top-right: three-column grid so the mark stays
   * visually centered (column 1 empty balances column 3’s burger width).
   */
  .lux-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 0.5rem;
    padding-top: max(0.8rem, calc(env(safe-area-inset-top, 0px) + 0.25rem));
    padding-bottom: 0.8rem;
  }

  .lux-brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .lux-burger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex !important;
    min-width: 3.35rem;
    min-height: 3.35rem;
  }

  .lux-burger svg {
    width: 2rem;
    height: 2rem;
  }

  .lux-brand-img {
    display: block;
    height: 3.2rem;
    width: auto;
    max-width: min(70vw, 12rem);
    filter: none;
    opacity: 1;
  }
}

@media (min-width: 1100px) {
  .lux-burger {
    display: none !important;
  }
}

/* Home desktop: sandwich menu (lang + CTA stay in the bar) */
@media (min-width: 1100px) {
  body.lux-home .lux-nav-desktop {
    display: none !important;
  }

  body.lux-home .lux-burger {
    display: flex !important;
  }

  body.lux-home .lux-header {
    justify-content: flex-start;
  }

  body.lux-home .lux-header-actions {
    margin-left: auto;
  }

  body.lux-home:has(.lux-header.is-open)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 100540;
    background: rgba(20, 16, 12, 0.42);
    pointer-events: none;
  }

  body.lux-home .lux-mobile-drawer {
    left: auto;
    width: min(32rem, 92vw);
    box-shadow: -12px 0 48px rgba(44, 35, 25, 0.14);
  }
}

.lux-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100550;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.lux-mobile-drawer.is-open {
  transform: translateX(0);
}

/* Top bar: logo left, close right (Replit-style full-screen menu) */
.lux-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 22rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(44, 35, 25, 0.08);
  flex-shrink: 0;
}

.lux-drawer__brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.lux-drawer__brand-img {
  height: 2rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  display: block;
}

.lux-drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c2319' stroke-width='1.5'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E")
    center / 1.25rem 1.25rem no-repeat;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lux-drawer__close:hover,
.lux-drawer__close:focus-visible {
  opacity: 1;
  outline: none;
}

/* Primary nav links  -  centered, airy caps (reference) */
.lux-mobile-drawer > a:not(.lux-drawer-cta) {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 200;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.82);
  text-decoration: none;
  padding: 0.95rem 0;
  border-bottom: none;
  text-align: center;
  width: 100%;
  max-width: 22rem;
}

.lux-mobile-drawer > a:not(.lux-drawer-cta):hover {
  color: var(--lux-primary);
}

/* Solid CTA  -  full-width bar */
.lux-drawer-cta {
  display: block !important;
  width: 100%;
  max-width: 22rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 1.1rem 1.5rem !important;
  font-family: var(--font-heading);
  font-size: 0.68rem !important;
  font-weight: 500;
  letter-spacing: 0.26em !important;
  text-transform: uppercase;
  background: var(--lux-primary) !important;
  border: none !important;
  color: #fff !important;
  text-decoration: none !important;
}

.lux-drawer-cta:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

/* Mobile drawer: same compact control as desktop — one row + expandable list (no tall card) */
.lux-drawer-lang.lux-lang {
  margin-top: 2rem;
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.lux-drawer-lang__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.lux-drawer-lang__bar .lux-lang__trigger {
  flex-shrink: 0;
}

.lux-drawer-lang__label {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.42);
  flex-shrink: 0;
}

/* Flow layout avoids clipping inside overflow-y drawer */
.lux-drawer-lang .lux-drawer-lang__menu.lux-lang__dropdown {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  min-width: 0;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.45rem;
}

.lux-drawer-lang.is-open .lux-drawer-lang__menu.lux-lang__dropdown {
  box-shadow:
    0 2px 4px rgba(44, 35, 25, 0.04),
    0 12px 28px rgba(44, 35, 25, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .lux-lang__item,
  .lux-lang__badge {
    transition: none !important;
  }
}

.lux-mobile-tagline {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.38);
}

/* ---- Hero ---- */
.lux-hero {
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--lux-bg-tint) 0%, var(--lux-bg) 100%);
}

@media (min-width: 768px) {
  .lux-hero {
    padding: 5rem 2rem 4rem;
  }
}

/* Ceremonies listing  -  mirrors Replit Ceremonies.tsx (bg-secondary/30, border-border) */
.lux-hero--ceremonies {
  background: var(--lux-hero-ceremonies-bg) !important;
  padding: clamp(4.5rem, 14vw, 10rem) 1.5rem clamp(3.5rem, 8vw, 5rem);
  border-bottom: 1px solid var(--lux-border);
}

@media (min-width: 768px) {
  .lux-hero--ceremonies {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.lux-therapies-cta {
  text-align: center;
  padding: 4.5rem 1.5rem 5.5rem;
  background: var(--lux-bg);
  border-top: 1px solid var(--lux-line);
}

.lux-therapies-cta--after-crosslink {
  padding-top: 2.75rem;
  padding-bottom: 4.25rem;
  border-top: 0;
}

.lux-therapies-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.75rem;
  line-height: 1.35;
}

.lux-therapies-cta--after-crosslink .lux-therapies-cta__title {
  margin-bottom: 1.25rem;
}

.lux-therapies-cta .lux-nav-cta {
  display: inline-block;
  padding: 1rem 2.75rem;
  box-shadow: 0 8px 28px rgba(44, 35, 25, 0.1);
  background: var(--lux-primary);
  color: #fff !important;
  border-color: var(--lux-primary);
}

.lux-therapies-cta .lux-nav-cta:hover,
.lux-therapies-cta .lux-nav-cta:focus-visible {
  background: #9d6e2d;
  color: #fff !important;
  border-color: #9d6e2d;
}

.lux-kicker {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin-bottom: 1.5rem;
}

.lux-display-title {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lux-foreground);
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

/* Replit: text-lg text-muted-foreground font-light */
.lux-lead {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
  color: var(--lux-muted-foreground);
}

.lux-hero-tagline {
  max-width: 44rem;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--lux-muted-foreground);
}

/* Journeys page hero  -  white band + rule; keep gap to list tight on mobile */
.lux-hero.lux-hero--journeys {
  background: #fff !important;
  padding: 2.5rem 1.5rem 0 !important;
}

@media (min-width: 768px) {
  .lux-hero.lux-hero--journeys {
    padding: 3.25rem 2rem 0 !important;
  }
}

.lux-hero-rule {
  width: 100%;
  max-width: 72rem;
  margin: 2.75rem auto 0;
  border: 0;
  border-top: 1px solid var(--lux-border);
}

.lux-hero--journeys .lux-hero-rule {
  margin-top: 1.35rem;
  margin-bottom: 0;
}

/* ---- Journeys index: Replit Journeys.tsx (alternating image + editorial column; lux-journeys-replit-stack) ---- */
.lux-page-inner {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.lux-page-inner--wide {
  max-width: 75rem;
}

.lux-journeys-replit-list {
  padding: 3rem 0 3.5rem !important;
  background: var(--lux-bg) !important;
}

/* Pull list closer under hero (beats .lux-scope #section-main + legacy #section-main min-height) */
.lux-scope #section-main.lux-journeys-replit-list {
  padding: 1rem 1.25rem 3rem !important;
  min-height: 0 !important;
}

@media (min-width: 768px) {
  .lux-scope #section-main.lux-journeys-replit-list {
    padding: 1.35rem 2rem 3.5rem !important;
  }
}

/* ~space-y-24 mobile / ~space-y-32 desktop vs Luxury-Booking-Site Journeys.tsx */
.lux-journeys-replit-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.lux-journey-row {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
}

/* Clean editorial separator between journey rows. */
.lux-journey-row + .lux-journey-row {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.lux-journey-row + .lux-journey-row::before {
  content: none;
}

.lux-journey-row + .lux-journey-row::after {
  content: none;
}

.lux-journey-separator {
  position: relative;
  height: clamp(3rem, 5.8vw, 4.25rem);
  display: block;
  width: 100%;
}

.lux-journey-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(24rem, 68%);
  height: 1px;
  background: rgba(184, 130, 57, 0.4) !important;
  opacity: 1 !important;
}

@media (min-width: 900px) {
  .lux-journey-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 4rem;
  }

  .lux-journey-row--reverse .lux-journey-row__media {
    order: 2;
  }

  .lux-journey-row--reverse .lux-journey-row__content {
    order: 1;
  }
}

.lux-journey-row__content {
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.lux-journey-row__frame {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 1rem;
  background: #faf9f7;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(44, 35, 25, 0.07);
  border: 1px solid rgba(44, 35, 25, 0.08);
  transition: transform 0.75s ease;
}

.lux-journey-row__frame.lux-hover-carousel {
  position: relative;
}

.lux-journey-row__frame .lux-hover-carousel__slide {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  object-fit: cover;
  display: block !important;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 0;
}

.lux-journey-row__frame .lux-hover-carousel__slide--active {
  opacity: 1;
  z-index: 1;
}

.lux-journey-row__frame.lux-hover-carousel:hover {
  transform: scale(1.035);
}

/* Subtle highlight for promoted journey (keeps same position/order) */
.lux-journey-row--featured .lux-journey-row__frame {
  border-color: rgba(184, 130, 57, 0.45);
  box-shadow: 0 8px 28px rgba(184, 130, 57, 0.16);
}

.lux-journey-row--featured .lux-journey-row__frame.lux-hover-carousel:hover {
  box-shadow: 0 12px 34px rgba(184, 130, 57, 0.22);
}

.lux-journey-row__title {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(1.6rem, 4.1vw, 2.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.lux-journey-row__title a {
  color: var(--lux-ink);
  text-decoration: none;
}

.lux-journey-row__title a:hover {
  color: var(--lux-primary);
}

.lux-journey-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.52);
}

.lux-journey-row__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lux-journey-row__meta-item .lux-icon-calendar,
.lux-journey-row__meta-item .lux-icon-users {
  color: var(--lux-primary);
}

.lux-journey-row__lead {
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--lux-ink-muted);
  margin: 0 0 2rem;
}

.lux-journey-row__includes {
  border-left: 2px solid rgba(184, 130, 57, 0.35);
  padding: 0.5rem 0 0 1.35rem;
  margin-bottom: 2.25rem;
  overflow: visible;
}

.lux-journey-row__includes-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.lux-journey-row__includes ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(44, 35, 25, 0.68);
  font-weight: 300;
}

.lux-journey-row__includes li {
  margin-bottom: 0.4rem;
}

.lux-journey-row__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: auto;
}

.lux-journey-row__btn {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.85rem;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lux-journey-row__btn--ghost {
  border: 1px solid rgba(44, 35, 25, 0.28);
  color: var(--lux-ink) !important;
  background: transparent;
}

.lux-journey-row__btn--ghost:hover {
  border-color: var(--lux-primary);
  color: var(--lux-primary) !important;
}

.lux-journey-row__btn--solid {
  border: 1px solid var(--lux-ink);
  background: var(--lux-ink);
  color: #fff !important;
}

.lux-journey-row__btn--solid:hover {
  background: var(--lux-primary);
  border-color: var(--lux-primary);
}

.lux-journeys-crosslink .lux-journey-row__btn--solid {
  background: var(--lux-primary);
  border-color: var(--lux-primary);
  color: #fff !important;
}

.lux-journeys-crosslink .lux-journey-row__btn--solid:hover {
  background: #9d6e2d;
  border-color: #9d6e2d;
}

.lux-journey-row__price {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--lux-ink);
  letter-spacing: 0.04em;
}

.lux-journeys-crosslink {
  margin-top: 0.5rem;
  padding: 3rem 2rem;
  border: 1px solid var(--lux-line);
  background: var(--lux-bg-tint);
  text-align: center;
}

.lux-journeys-crosslink__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1rem;
}

.lux-journeys-crosslink__text {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lux-ink-muted);
  font-weight: 300;
}

.lux-journeys-crosslink__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

/* ---- Journey detail  -  Replit JourneyDetail.tsx (refined luxury band) ---- */
.lux-journey-detail-page .lux-back-wrap.container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.75rem;
}

.lux-journey-detail-page .lux-back {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.45);
}

.lux-journey-detail-page .lux-back:hover {
  color: var(--lux-primary);
}

/* Replit JourneyDetail back row: inline-flex + arrow icon */
.lux-journey-detail-page .lux-back--replit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-decoration: none !important;
}

.lux-journey-detail-page .lux-back__icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 1px;
}

.lux-journey-detail-page .lux-back__icon svg {
  display: block;
}

.lux-journey-detail__intro {
  padding: 2.5rem 0 3rem;
}

@media (min-width: 768px) {
  .lux-journey-detail__intro {
    padding: 2.5rem 0 3rem;
  }
}

.lux-journey-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.5);
}

.lux-journey-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lux-journey-detail__meta-item .lux-icon-calendar,
.lux-journey-detail__meta-item .lux-icon-users {
  color: var(--lux-primary);
  opacity: 0.95;
}

.lux-journey-detail__title {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lux-ink);
  line-height: 1.12;
  margin: 0;
  max-width: 52rem;
}

.lux-journey-detail__hero-wrap {
  padding-bottom: 0;
}

.lux-journey-detail__hero {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: hsl(40, 25%, 96%);
  border: 1px solid rgba(44, 35, 25, 0.06);
  box-shadow: 0 4px 24px rgba(44, 35, 25, 0.07);
}

.lux-journey-detail__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lux-journey-detail__grid-wrap {
  padding: 4rem 0 5rem;
}

@media (min-width: 992px) {
  .lux-journey-detail__grid-wrap {
    padding: 4rem 0 5.5rem;
  }
}

.lux-journey-detail__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .lux-journey-detail__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 3rem 4rem;
    align-items: start;
  }
}

.lux-journey-detail__main {
  padding-right: 0;
}

@media (min-width: 992px) {
  .lux-journey-detail__main {
    padding-right: 0.5rem;
  }
}

/* Replit: text-xs tracking-[0.2em] text-primary font-semibold */
.lux-journey-detail__h2 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 1.5rem;
}

/* text-lg leading-relaxed text-muted font-light */
.lux-journey-detail__prose {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.62);
  margin: 0 0 2.5rem;
}

/* Replit: What's Included  -  foreground caps */
.lux-journey-detail__h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.5rem;
}

.lux-journey-detail__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lux-journey-detail__checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lux-journey-detail__checklist li:last-child {
  margin-bottom: 0;
}

.lux-icon-check-circle {
  display: flex;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--lux-primary);
}

.lux-journey-detail__check-text {
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.68);
}

/* Sidebar card  -  bg-[#FAF9F7] p-8 border */
.lux-journey-detail__aside {
  background: #faf9f7;
  border: 1px solid rgba(44, 35, 25, 0.1);
  border-radius: 2px;
  padding: 2rem;
}

@media (min-width: 992px) {
  .lux-journey-detail__aside {
    padding: 2rem 2rem 2.25rem;
  }
}

.lux-journey-detail__aside-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 2rem;
}

.lux-journey-detail__dl {
  margin: 0;
}

.lux-journey-detail__dl > div {
  margin-bottom: 1.5rem;
}

.lux-journey-detail__dl > div:last-of-type {
  margin-bottom: 0;
}

.lux-journey-detail__dl dt {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.48);
  margin-bottom: 0.35rem;
}

.lux-journey-detail__dl dd {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--lux-ink);
  line-height: 1.5;
}

/* text-2xl font-heading font-light */
.lux-journey-detail__price {
  font-size: 1.5rem !important;
  font-family: var(--font-heading);
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.lux-journey-detail__price-hint {
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.55);
}

.lux-journey-detail__aside-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 35, 25, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lux-journey-detail__reserve {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--lux-primary);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(44, 35, 25, 0.08);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.lux-journey-detail__reserve:hover {
  filter: brightness(1.04);
  box-shadow: 0 4px 14px rgba(184, 130, 57, 0.25);
}

.lux-journey-detail__ask {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(44, 35, 25, 0.2);
  color: var(--lux-ink) !important;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lux-journey-detail__ask:hover {
  border-color: var(--lux-primary);
  color: var(--lux-primary) !important;
}

.lux-journey-detail__mini-quote {
  margin: 0 auto 3.5rem;
  max-width: 38rem;
  padding: 2.25rem 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: rgba(44, 35, 25, 0.5);
  text-align: left;
  border: 0;
  border-top: 1px solid rgba(44, 35, 25, 0.08);
  background: transparent;
}

/* Bottom band  -  py-20 border-t bg tint */
.lux-journey-detail__bottom-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #faf9f7;
  border-top: 1px solid rgba(44, 35, 25, 0.1);
}

.lux-journey-detail__bottom-cta-lead {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.5);
  margin: 0 0 0.5rem;
}

.lux-journey-detail__bottom-cta-title {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 2rem;
  line-height: 1.35;
}

.lux-journey-detail__bottom-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--lux-primary);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(44, 35, 25, 0.12);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.lux-journey-detail__bottom-cta-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 28px rgba(184, 130, 57, 0.3);
}

/*
 * Journey detail — responsive (artifacts/rajaaram-site/src/pages/JourneyDetail.tsx)
 * Mobile: title band pt-10 pb-12, hero shadow-md, body py-16, grid gap-12, sidebar card p-8.
 */
@media (max-width: 991px) {
  .lux-journey-detail--refined .lux-journey-detail__intro {
    padding: 1.25rem 0 2rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__grid-wrap {
    padding: 2.75rem 0 3.5rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__grid {
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .lux-journey-detail-page .lux-back-wrap.container {
    padding-top: 0.5rem;
  }

  /* Reference mockup: duration line reads in accent gold (icons stay aligned) */
  .lux-journey-detail--refined .lux-journey-detail__meta {
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--lux-primary);
  }

  .lux-journey-detail--refined .lux-journey-detail__meta-item .lux-icon-calendar,
  .lux-journey-detail--refined .lux-journey-detail__meta-item .lux-icon-users {
    opacity: 1;
  }

  /* Replit: text-3xl mobile title, stacked uppercase lines */
  .lux-journey-detail--refined .lux-journey-detail__title {
    font-size: clamp(1.5rem, 6.25vw, 2.125rem);
    letter-spacing: 0.14em;
    line-height: 1.18;
    max-width: none;
  }

  /* shadow-md on hero frame */
  .lux-journey-detail--refined .lux-journey-detail__hero {
    box-shadow: 0 6px 20px rgba(44, 35, 25, 0.11);
  }

  .lux-journey-detail--refined .lux-journey-detail__prose {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__h2 {
    margin-bottom: 1.25rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__h3 {
    margin-bottom: 1.25rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__checklist li {
    margin-bottom: 0.875rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__bottom-cta {
    padding: 4rem 1.5rem;
  }

  .lux-journey-detail--refined .lux-journey-detail__mini-quote {
    margin-bottom: 2.75rem;
    padding-top: 1.75rem;
  }
}

/* ---- Ceremony detail  -  Replit CeremonyDetail.tsx (image 4/5 + column, investment bar) ---- */
.lux-ceremony-detail-page .lux-back-wrap.container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .lux-ceremony-detail-page .lux-back-wrap.container {
    padding-top: 0.5rem;
  }
}

.lux-ceremony-detail-page .lux-back {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.45);
  text-decoration: none !important;
}

.lux-ceremony-detail-page .lux-back:hover {
  color: var(--lux-primary) !important;
}

.lux-ceremony-detail__hero-band {
  padding: 0 0 2.5rem;
}

.lux-ceremony-detail__hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .lux-ceremony-detail__hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 4rem;
  }
}

@media (min-width: 1200px) {
  .lux-ceremony-detail__hero-inner {
    gap: 3rem 5rem;
  }
}

.lux-ceremony-detail__figure {
  margin: 0;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--lux-bg-tint);
  box-shadow: 0 4px 20px rgba(44, 35, 25, 0.1);
  border: 1px solid rgba(44, 35, 25, 0.06);
}

.lux-ceremony-detail__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-ceremony-detail__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0 0;
  min-width: 0;
}

@media (min-width: 768px) {
  .lux-ceremony-detail__intro {
    padding: 1rem 0;
  }
}

/*
 * Mobile (reference): category tag + duration on one row (space-between),
 * then title, then guest meta — matches Ayurvedic / Abhyanga-style stacked hero.
 */
@media (max-width: 767px) {
  .lux-ceremony-detail__intro {
    display: block;
  }

  .lux-ceremony-detail__meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
  }

  .lux-ceremony-detail__category {
    margin: 0 0 0.8rem;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  .lux-ceremony-detail__meta-item--duration {
    margin: 0;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lux-primary);
  }

  .lux-ceremony-detail__title {
    margin-bottom: 1.1rem;
  }

  .lux-ceremony-detail__meta-item--guests {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(44, 35, 25, 0.48);
  }

  .lux-ceremony-detail__prose {
    margin-bottom: 1.5rem;
  }

  .lux-ceremony-detail__booking {
    padding-top: 1.5rem;
  }
}

.lux-ceremony-detail__category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 1rem;
}

.lux-ceremony-detail__category .lux-icon-tag {
  display: inline-flex;
  color: var(--lux-primary);
  opacity: 0.95;
}

.lux-ceremony-detail__title {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(1.75rem, 4.2vw, 3.15rem);
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .lux-ceremony-detail__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(44, 35, 25, 0.48);
  }
}

.lux-ceremony-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lux-ceremony-detail__meta-item .lux-icon-clock {
  color: var(--lux-primary);
  opacity: 0.95;
}

.lux-ceremony-detail__meta-item .lux-icon-users {
  color: var(--lux-primary);
}

.lux-ceremony-detail__prose {
  margin: 0 0 2.5rem;
}

.lux-ceremony-detail__prose p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(44, 35, 25, 0.72);
}

@media (max-width: 767px) {
  .lux-ceremony-detail__title {
    margin-top: 0;
    margin-bottom: 1.1rem;
  }

  .lux-ceremony-detail__prose {
    margin-bottom: 1.5rem;
  }
}

.lux-ceremony-detail__booking {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 35, 25, 0.12);
}

@media (min-width: 640px) {
  .lux-ceremony-detail__booking {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
  }
}

.lux-ceremony-detail__invest-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.48);
}

.lux-ceremony-detail__price-line {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--lux-ink);
}

.lux-ceremony-detail__reserve {
  display: inline-block;
  text-align: center;
  padding: 1rem 2rem;
  background: var(--lux-primary);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(44, 35, 25, 0.15);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.lux-ceremony-detail__reserve:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 24px rgba(184, 130, 57, 0.35);
  color: #fff !important;
}

/* Included band — white panel + grid */
.lux-ceremony-detail__included-band {
  background: var(--lux-bg);
  padding: 4rem 0;
  border-top: 1px solid rgba(44, 35, 25, 0.06);
}

@media (min-width: 768px) {
  .lux-ceremony-detail__included-band {
    padding: 5rem 0;
  }
}

.lux-ceremony-detail__included-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 2rem;
  text-align: left;
}

.lux-ceremony-detail__included-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem 2rem;
}

@media (min-width: 768px) {
  .lux-ceremony-detail__included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.lux-ceremony-detail__included-cell {
  margin: 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-left: 2px solid rgba(184, 130, 57, 0.28);
}

.lux-ceremony-detail__included-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(44, 35, 25, 0.68);
}

/* Optional footnote (transfer, etc.): no accent bar — quiet rule + type like bottom CTA lead */
.lux-ceremony-detail__mini-quote {
  margin: 0 auto;
  max-width: 38rem;
  padding: 2.75rem 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: rgba(44, 35, 25, 0.5);
  text-align: left;
  border: 0;
  border-top: 1px solid rgba(44, 35, 25, 0.08);
  background: transparent;
}

.lux-ceremony-detail__bottom-cta {
  text-align: center;
  padding: 4.5rem 1.5rem 5rem;
  background: var(--lux-bg);
}

.lux-ceremony-detail__bottom-lead {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.55);
}

.lux-ceremony-detail__bottom-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--lux-primary);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(44, 35, 25, 0.12);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.lux-ceremony-detail__bottom-btn:hover {
  filter: brightness(1.05);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(184, 130, 57, 0.3);
}

/* Preparation band — before / during / after (Replit: centered kicker + title, column rules) */
.lux-preparation {
  background: var(--lux-preparation-bg);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(44, 35, 25, 0.06);
  border-bottom: 1px solid rgba(44, 35, 25, 0.06);
}

@media (min-width: 768px) {
  .lux-preparation {
    padding: 4.5rem 0;
  }
}

.lux-journey-detail-page .lux-preparation {
  margin-top: 0;
}

.lux-preparation__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .lux-preparation__header {
    margin-bottom: 3rem;
  }
}

.lux-preparation__kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-preparation-rule);
}

.lux-preparation__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-preparation-text);
  line-height: 1.2;
}

.lux-preparation__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lux-preparation__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }
}

.lux-preparation__col {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .lux-preparation__col:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(184, 141, 91, 0.25);
  }
}

@media (min-width: 768px) {
  .lux-preparation__col {
    padding: 0.35rem 2rem 0.35rem 0;
    min-height: 18rem;
  }

  .lux-preparation__col:not(:first-child) {
    padding-left: 2rem;
    border-left: 1px solid var(--lux-preparation-rule);
  }

  .lux-preparation__col:last-child {
    padding-right: 0;
  }
}

.lux-preparation__label {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.84);
}

.lux-preparation__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(44, 35, 25, 0.78);
  text-wrap: pretty;
}

.lux-preparation__text strong {
  font-weight: 400;
}

.lux-preparation__highlight {
  color: var(--lux-preparation-rule);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 500;
}

/* Featured two-column journey (Replit spotlight) */
.lux-journeys-featured {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 1rem;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .lux-journeys-featured {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3.5rem 4rem;
    padding: 4rem 2rem 1.5rem;
  }
}

.lux-journeys-featured__content {
  min-width: 0;
  overflow: visible;
}

.lux-journeys-featured__frame {
  display: block;
  padding: 0.65rem;
  background: #f3f0ea;
  box-shadow: 0 24px 60px rgba(44, 35, 25, 0.08);
  text-decoration: none;
}

.lux-journeys-featured__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lux-journeys-featured__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.lux-journeys-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin-bottom: 1.25rem;
}

.lux-journeys-featured__meta .lux-icon-calendar {
  color: var(--lux-primary);
  opacity: 0.95;
}

.lux-journeys-featured__lead {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--lux-ink-muted);
  margin: 0 0 1.75rem;
}

.lux-journeys-featured__includes {
  border-left: 2px solid rgba(184, 130, 57, 0.35);
  padding: 0.5rem 0 0 1.25rem;
  margin-bottom: 2rem;
  overflow: visible;
}

.lux-journeys-featured__includes-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.lux-journeys-featured__includes ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(44, 35, 25, 0.68);
}

.lux-journeys-featured__includes li {
  margin-bottom: 0.35rem;
}

.lux-journeys-featured__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 20rem;
}

.lux-btn {
  display: inline-block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  text-decoration: none !important;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.lux-btn--ghost {
  border: 1px solid var(--lux-ink);
  color: var(--lux-ink) !important;
  background: transparent;
}

.lux-btn--ghost:hover {
  opacity: 0.85;
}

.lux-btn--solid {
  background: var(--lux-ink);
  color: #fff !important;
  border: 1px solid var(--lux-ink);
}

.lux-btn--solid:hover {
  filter: brightness(1.08);
}

.lux-journeys-grid-wrap {
  padding-top: 2rem !important;
}

/* Card footer: price + Details / Reserve (Replit pt-6 border-t mt-auto) */
.lux-ceremony-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 35, 25, 0.1);
}

.lux-card-price {
  font-family: var(--font-heading);
  font-size: 0.875rem; /* text-sm — Replit ceremony cards */
  font-weight: 400;
  color: var(--lux-ink);
  letter-spacing: 0.04em;
}

.lux-ceremony-card__footer .lux-card-actions {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem; /* Replit gap-5 between Details / Reserve */
}

.lux-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.lux-link-details {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.48) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.lux-link-details:hover {
  color: var(--lux-ink) !important;
}

.lux-link-reserve {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-primary) !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}

.lux-link-reserve:hover {
  opacity: 0.82;
}

.lux-scope .d-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lux-scope .de-room-switch:not(.lux-ceremony-card) .d-text {
  min-height: 14rem;
}

/* Ceremony listing cards: let flex fill row height (no fixed min on body text) */
.lux-scope .lux-ceremony-card.de-room-switch .lux-ceremony-card__body.d-text {
  min-height: 0;
}

/* ---- Therapy / journey cards (legacy markup) ---- */
.lux-scope .therapies-overview .row,
.lux-scope .complete_journeys-overview .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Bootstrap .row + .g-* adds column padding; with CSS grid it can skew layout — use grid gap only */
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  align-items: stretch;
  justify-items: stretch;
  box-sizing: border-box;
}

.lux-scope .therapies-overview .row > [class*='col-'],
.lux-scope .complete_journeys-overview .row > [class*='col-'] {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  flex: unset !important;
  min-width: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: stretch;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .lux-scope .therapies-overview .row,
  .lux-scope .complete_journeys-overview .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    align-content: start;
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  .lux-scope .therapies-overview .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* Replit: gap-12 lg:gap-16 */
    gap: 3rem 4rem;
  }
}

.lux-scope article.therapy-item {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-self: stretch;
  min-width: 0;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
}

/* Dedicated therapies grid hook (about + therapies pages) */
.lux-scope .therapies-overview .lux-therapies-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 3rem !important;
  width: 100%;
}

/* Keep the section heading on its own full row */
.lux-scope .therapies-overview .row > .col-lg-12.text-center {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
}

@media (min-width: 768px) {
  .lux-scope .therapies-overview .lux-therapies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 3rem !important;
  }
}

/* Stretch legacy wrapper so each card fills the grid row (Replit h-full + flex-col) */
.lux-scope article.therapy-item > div {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

.lux-scope .de-room {
  background: #fff;
  border: 1px solid rgba(44, 35, 25, 0.08);
  box-shadow: 0 12px 40px rgba(44, 35, 25, 0.05);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease;
}

/* Replit card: bg-white border p-6 shadow-sm; flex column fills row height */
.lux-scope .de-room.lux-ceremony-card {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.5rem !important;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(44, 35, 25, 0.06) !important;
  border: 1px solid var(--lux-border);
}

/*
 * Kill legacy style.css ceremony chrome (.de-room .d-text padding+border;
 * .de-room-switch gold outer card). Replit Ceremonies.tsx is a single flat white panel.
 */
.lux-scope .de-room.lux-ceremony-card.de-room-switch {
  background-color: #fff !important;
  color: var(--lux-ink) !important;
  border: 1px solid var(--lux-border) !important;
}

.lux-scope .lux-ceremony-card .d-text,
.lux-scope .lux-ceremony-card .lux-ceremony-card__body.d-text {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  text-align: left;
}

.lux-scope .lux-ceremony-card .lux-ceremony-card__title,
.lux-scope .lux-ceremony-card .d-text h3 {
  text-align: left;
}

.lux-scope .de-room.lux-ceremony-card:hover {
  box-shadow: 0 6px 20px rgba(44, 35, 25, 0.1) !important;
}

/* Priority ceremony card (chakra alignment) */
.lux-scope article.therapy-item--featured .de-room.lux-ceremony-card {
  border: 1px solid rgba(184, 130, 57, 0.45) !important;
  box-shadow: 0 10px 30px rgba(184, 130, 57, 0.16) !important;
  transform: translateY(-2px);
}

.lux-scope article.therapy-item--featured .de-room.lux-ceremony-card:hover {
  box-shadow: 0 14px 34px rgba(184, 130, 57, 0.22) !important;
}

.lux-scope article.therapy-item--featured .lux-card-badge {
  background: rgba(184, 130, 57, 0.16);
  color: #8c6027;
}

.lux-scope .de-room:hover:not(.lux-ceremony-card) {
  box-shadow: 0 18px 50px rgba(44, 35, 25, 0.09);
}

/* Ceremony cards: aspect-[4/3] image inset in padded card (Replit Ceremonies.tsx) */
.lux-scope .lux-ceremony-card__media.d-image {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 2rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--lux-bg-tint);
}

.lux-scope .lux-ceremony-card__media.d-image > a.lux-hover-carousel {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.65s ease;
}

.lux-scope .lux-ceremony-card__media.d-image > a.lux-hover-carousel:hover {
  transform: scale(1.04);
}

.lux-scope .lux-ceremony-card__media .lux-hover-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block !important;
  border-radius: 2px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 0;
}

.lux-scope .lux-ceremony-card__media .lux-hover-carousel__slide--active {
  opacity: 1;
  z-index: 1;
}

/* At rest: always show the primary image (fixes empty grey media box on About / therapies) */
.lux-scope .lux-ceremony-card__media .lux-hover-carousel:not(:hover) .lux-hover-carousel__slide:first-child {
  opacity: 1;
  z-index: 1;
}

.lux-scope .lux-ceremony-card__media .lux-hover-carousel:hover .lux-hover-carousel__slide:not(.lux-hover-carousel__slide--active) {
  opacity: 0;
}

.lux-scope .lux-about .therapies-overview article.therapy-item.lux-reveal {
  opacity: 1;
  transform: none;
}

.lux-ceremony-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  padding: 0;
  margin-bottom: 1rem;
  border: 0;
  background: transparent;
  flex-shrink: 0;
}

.lux-card-badge {
  font-family: var(--font-heading);
  font-size: 0.625rem; /* Replit text-[10px] */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lux-primary);
  background: var(--lux-primary-soft);
  border: 0;
  padding: 0.375rem 0.625rem; /* ~py-1.5 px-2.5 */
  line-height: 1.35;
  border-radius: 2px;
  max-width: 62%;
}

.lux-card-duration {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem; /* Replit gap-1.5 */
  font-family: var(--font-heading);
  font-size: 0.6875rem; /* Replit text-[11px] */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-muted-foreground);
  flex-shrink: 0;
  text-align: right;
  max-width: 38%;
}

.lux-card-duration span {
  line-height: 1.3;
}

.lux-icon-clock {
  flex-shrink: 0;
  opacity: 0.72;
  color: rgba(44, 35, 25, 0.45);
}

/* Match Replit clock size (14px) + muted tone on ceremony cards only */
.lux-card-duration .lux-icon-clock {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
  color: var(--lux-muted-foreground);
}

/* Inner column only — matches Replit Ceremonies.tsx (no second frame; outer .de-room is the card) */
.lux-ceremony-card__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
}

.lux-ceremony-card--text-only .lux-ceremony-card__meta {
  border: 0;
  padding-top: 0;
}

/* Keep badge + duration on one row at all widths (reference: tag left, clock + duration right) */
@media (max-width: 520px) {
  .lux-card-badge {
    max-width: min(62%, 100%);
  }

  .lux-card-duration {
    max-width: min(38%, 100%);
  }
}

.lux-scope .d-image:not(.lux-ceremony-card__media) {
  position: relative;
  margin-bottom: 1.5rem;
}

.lux-scope .d-image img {
  border-radius: 2px;
}

.lux-scope .lux-ceremony-card__media.d-image img {
  border-radius: 2px;
}

/* Ceremony grid titles — Replit Ceremonies.tsx scale + tracking; font-light reads closer to prototype than font-medium on Montserrat caps */
.lux-scope .lux-ceremony-card .d-text h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1rem;
  line-height: 1.25;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .lux-scope .lux-ceremony-card .d-text h3 {
    font-size: 1.875rem; /* Tailwind text-3xl */
  }
}

.lux-ceremony-card__title-link {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.lux-ceremony-card__title-link:hover {
  color: var(--lux-primary) !important;
}

.lux-scope .d-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin-bottom: 0.75rem;
}

.lux-featured-title {
  color: var(--lux-preparation-rule) !important;
}

.lux-scope .lux-ceremony-card .d-text p {
  font-size: 0.9375rem; /* Replit text-[15px] */
  font-weight: 300;
  line-height: 1.75;
  color: var(--lux-muted-foreground);
  flex: 0 1 auto !important;
  flex-grow: 0 !important;
  min-height: 0;
  margin: 0 0 2rem; /* Replit mb-8 */
}

.lux-scope .d-text p {
  font-size: 0.92rem;
  color: var(--lux-ink-muted);
  flex-grow: 1;
}

.lux-scope .d-text .btn-line {
  margin-top: 1.25rem;
  display: inline-block;
  border: 1px solid var(--lux-primary);
  padding: 0.55rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary) !important;
  text-decoration: none !important;
}

.lux-scope .d-text .btn-line:hover {
  background: var(--lux-primary);
  color: #fff !important;
}

/* Ceremonies → Journeys bridge (full-width split; avoids grid row-stretch gap on text-only card) */
.lux-scope .lux-journey-transfer-wrap {
  padding: 2.5rem 0 5rem !important;
}

@media (min-width: 768px) {
  .lux-scope .lux-journey-transfer-wrap {
    padding: 3rem 0 5.5rem !important;
  }
}

.lux-scope .lux-journey-transfer-wrap .container {
  max-width: 80rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: max(1.5rem, env(safe-area-inset-left)) !important;
  padding-right: max(1.5rem, env(safe-area-inset-right)) !important;
}

@media (min-width: 768px) {
  .lux-scope .lux-journey-transfer-wrap .container {
    padding-left: max(2rem, env(safe-area-inset-left)) !important;
    padding-right: max(2rem, env(safe-area-inset-right)) !important;
  }
}

.lux-journey-transfer {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(44, 35, 25, 0.1);
  box-shadow: 0 16px 48px rgba(44, 35, 25, 0.07);
  background: #fff;
}

@media (min-width: 768px) {
  .lux-journey-transfer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: min(22rem, 52vw);
  }
}

.lux-journey-transfer__media {
  position: relative;
  display: block;
  min-height: 14rem;
  overflow: hidden;
  background: var(--lux-bg-tint);
}

@media (min-width: 768px) {
  .lux-journey-transfer__media {
    min-height: 0;
  }
}

.lux-journey-transfer__img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .lux-journey-transfer__img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}

.lux-journey-transfer__media:hover .lux-journey-transfer__img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .lux-journey-transfer__media:hover .lux-journey-transfer__img {
    transform: none;
  }
}

.lux-journey-transfer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem 1.75rem;
  text-align: left;
}

@media (min-width: 768px) {
  .lux-journey-transfer__content {
    padding: 2.25rem 2.25rem 2rem;
    border-left: 1px solid rgba(184, 130, 57, 0.12);
  }
}

.lux-journey-transfer__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 0.85rem;
  line-height: 1.28;
  max-width: 26ch;
}

.lux-journey-transfer__title-link {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.lux-journey-transfer__title-link:hover {
  color: var(--lux-primary) !important;
}

.lux-journey-transfer__lede {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--lux-ink-muted);
  margin: 0;
  max-width: 42rem;
}

.lux-journey-transfer .lux-ceremony-card__footer.lux-journey-transfer__footer {
  margin-top: 1.65rem;
  padding-top: 1.35rem;
}

/*
 * Primary control for “explore / go to Jornadas” (listing page) — not plain reserve text.
 */
.lux-cta-explore-journeys {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  text-align: center;
  padding: 0.65rem 1.15rem;
  border-radius: 2px;
  border: 1px solid var(--lux-primary);
  background: var(--lux-primary);
  color: #fff !important;
  max-width: 100%;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 4px 14px rgba(184, 130, 57, 0.22);
}

.lux-cta-explore-journeys:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(184, 130, 57, 0.28);
}

.lux-cta-explore-journeys:focus-visible {
  outline: 2px solid var(--lux-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .lux-cta-explore-journeys {
    transition: none;
  }
}

/* Section spacing */
.lux-scope #section-main {
  padding: 3rem 1.25rem 4rem !important;
}

@media (min-width: 768px) {
  .lux-scope #section-main {
    padding: 3.5rem 2rem 5rem !important;
  }
}

/*
 * Ceremonies grid: avoid stacking horizontal padding (section + legacy .container @767px)
 * which reads as an off-center card. Inset lives only on .container (aligned with .lux-hero--ceremonies).
 */
.lux-scope #section-main.therapies-overview {
  padding: 5rem 0 !important;
}

@media (min-width: 768px) {
  .lux-scope #section-main.therapies-overview {
    padding: 5.5rem 0 !important;
  }
}

.lux-scope #section-main.therapies-overview .container {
  max-width: 80rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: max(1.5rem, env(safe-area-inset-left)) !important;
  padding-right: max(1.5rem, env(safe-area-inset-right)) !important;
}

@media (min-width: 768px) {
  .lux-scope #section-main.therapies-overview .container {
    padding-left: max(2rem, env(safe-area-inset-left)) !important;
    padding-right: max(2rem, env(safe-area-inset-right)) !important;
  }
}

/* Subheaders on inner pages (contact, faq, etc.) */
.lux-scope #subheader {
  padding: 3rem 1.25rem 1rem !important;
  background: transparent !important;
}

.lux-scope #subheader h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-ink);
}

/* Footer  -  legacy style.css sets footer a { color: #ccc } & .de_light footer a  -  force readable ink */
body.lux-scope footer.lux-footer {
  background: var(--lux-bg-tint) !important;
  color: rgba(44, 35, 25, 0.72) !important;
  border-top: 1px solid var(--lux-line);
  padding: 3rem 0 1.75rem !important;
  margin-top: 0;
}

.lux-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lux-footer-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .lux-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 5vw, 4rem);
    row-gap: 2.25rem;
  }

  .lux-footer-about {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .lux-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    column-gap: clamp(2.5rem, 6vw, 5rem);
  }

  .lux-footer-about {
    grid-column: auto;
  }
}

.lux-footer-about {
  max-width: 20rem;
}

.lux-footer-brand {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 0.85rem;
}

.lux-footer-tagline {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.58);
  max-width: 22rem;
}

.lux-footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 1rem;
}

.lux-footer-col {
  min-width: 0;
}

.lux-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lux-footer-links li {
  margin: 0;
  padding: 0;
}

/* Beat .de_light footer a and footer a from legacy theme */
body.lux-scope footer.lux-footer .lux-footer-col a,
body.lux-scope footer.lux-footer .lux-footer-col a:visited,
.lux-footer-col a {
  display: inline-block;
  color: rgba(44, 35, 25, 0.72) !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  transition: color 0.2s ease;
}

body.lux-scope footer.lux-footer .lux-footer-col a:hover,
.lux-footer-col a:hover {
  color: var(--lux-primary) !important;
}

.lux-footer-bar {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lux-line);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(44, 35, 25, 0.48);
}

/* Detail pages (single ceremony) */
.lux-back-wrap {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 1.25rem 0;
}

.lux-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-ink-muted);
  margin-bottom: 2rem;
  text-decoration: none !important;
}

.lux-back:hover {
  color: var(--lux-primary);
}

.lux-home-intro h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--lux-ink);
}

.lux-home-intro .lead {
  font-weight: 300;
  color: var(--lux-ink-muted);
}

/* ---- Our Essence / About (Replit-style) ---- */
.lux-about-hero {
  position: relative;
  z-index: 20;
  isolation: isolate;
  background: #f6f5f2 !important;
  padding: 2.5rem 1.25rem 3.5rem;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.lux-about-hero__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.lux-about-kicker {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 1.25rem;
}

.lux-about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-ink);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.lux-about-hero__lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(44, 35, 25, 0.7);
  font-weight: 300;
}

.lux-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: 2.75rem;
}

.lux-about-hero__link {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.62) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(184, 130, 57, 0.35);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lux-about-hero__link:hover,
.lux-about-hero__link:focus-visible {
  color: var(--lux-primary) !important;
  border-bottom-color: var(--lux-primary);
}

.lux-about-frame {
  margin: 0;
  padding: 0.75rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(44, 35, 25, 0.1);
  border: 1px solid rgba(44, 35, 25, 0.04);
  max-width: 100%;
}

/* Replit About: main image uses max-w-6xl + aspect-[21/9] + object-cover */
.lux-about-frame--hero {
  display: block;
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.lux-about-frame__img,
.lux-about-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.lux-about-frame--hero .lux-about-frame__img,
.lux-about-frame--hero img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  height: auto;
}

/* Split band image  -  Replit uses aspect-square */
.lux-about-frame--split img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.lux-about-philosophy {
  background: #fff;
  padding: 4rem 1.25rem 4.5rem;
}

.lux-about {
  position: relative;
}

.lux-about > * {
  position: relative;
  z-index: 1;
}

/* Scroll-reveal starts at opacity:0 — keep About sections always visible */
.lux-about .lux-reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  will-change: auto;
}

.lux-about-video {
  min-height: clamp(180px, 32vw, 300px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #1b1510;
  pointer-events: none;
}

.lux-about-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 21, 16, 0.34) 0%, rgba(27, 21, 16, 0.48) 100%);
  z-index: 1;
  pointer-events: none;
}

.lux-about > footer.lux-footer {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: 0;
  background: var(--lux-bg-tint) !important;
}

.lux-about-prose {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.lux-about-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 2.25rem;
  line-height: 1.35;
}

.lux-about-serif {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.95;
  color: #4a4a4a;
  text-align: center;
}

.lux-about-serif p {
  margin: 0;
}

@media (max-width: 767px) {
  .lux-about-philosophy {
    padding: 3.25rem 1.35rem 3.6rem;
  }

  .lux-about-prose {
    max-width: 33rem;
  }

  .lux-about-section-title {
    font-size: clamp(1.02rem, 4vw, 1.22rem);
    letter-spacing: 0.13em;
    margin-bottom: 1.5rem;
    line-height: 1.28;
  }

  .lux-about-serif {
    font-size: 1.01rem;
    line-height: 1.82;
    text-align: left;
    max-width: 32ch;
    margin: 0 auto;
    text-wrap: pretty;
  }

  .lux-about-philosophy .lux-about-serif {
    font-family: var(--font-body);
    font-size: 0.97rem;
    line-height: 1.76;
    font-weight: 300;
    color: rgba(44, 35, 25, 0.76);
    letter-spacing: 0.005em;
  }

  .lux-about-split {
    padding: 3.6rem 1.35rem 3.9rem;
  }

  .lux-about-split__text {
    max-width: 33rem;
    margin: 0 auto;
  }

  .lux-about-split__title {
    font-size: clamp(1.02rem, 4vw, 1.2rem);
    letter-spacing: 0.13em;
    line-height: 1.28;
    margin-bottom: 1.35rem;
  }

  .lux-about-split .lux-about-serif {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.76;
    font-weight: 300;
    color: rgba(44, 35, 25, 0.78);
    max-width: 32ch;
    margin: 0;
    text-wrap: pretty;
  }

  .lux-about-info {
    padding: 3.6rem 1.35rem 3.9rem;
  }

  .lux-about-info__grid {
    gap: 0.9rem;
    max-width: 34rem;
  }

  .lux-about-info__card {
    padding: 1.2rem 1rem;
  }

  .lux-about-info__label {
    font-size: 0.57rem;
    letter-spacing: 0.17em;
    margin-bottom: 0.5rem;
  }

  .lux-about-info__value {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .lux-about-mid {
    padding: 3.9rem 1.35rem 4.2rem;
    margin: 0.9rem 0 1.1rem;
  }

  .lux-about-mid__inner {
    gap: 2.1rem;
  }

  .lux-about-mid__title {
    margin-bottom: 1.05rem;
    letter-spacing: 0.085em;
    line-height: 1.28;
    font-size: clamp(1.04rem, 4vw, 1.24rem);
    max-width: 20ch;
  }

  .lux-about-mid__copy {
    max-width: 33rem;
    margin: 0 auto;
  }

  .lux-about-mid .lux-about-serif--compact {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.78;
    font-weight: 300;
    color: rgba(44, 35, 25, 0.78);
    letter-spacing: 0.004em;
    max-width: 32ch;
    margin-bottom: 1.35rem;
    text-wrap: pretty;
  }

  .lux-scope .lux-about .therapies-overview {
    margin-top: 0;
    padding-top: 2.8rem !important;
    padding-bottom: 4.6rem !important;
  }

  .lux-scope .lux-about .therapies-overview .lux-therapies-heading {
    padding-top: 0.35rem;
  }
}

.lux-about-serif--compact {
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.lux-about-split {
  background: #f9f7f5;
  padding: 3.5rem 1.25rem 4rem;
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
}

.lux-about-split__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lux-about-split__inner {
    grid-template-columns: 1fr 1.05fr;
  }
}

.lux-about-split__text {
  text-align: left;
}

.lux-about-split__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 200;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.5rem;
  line-height: 1.35;
}

.lux-about-split .lux-about-serif {
  text-align: left;
}

.lux-about-frame--split {
  margin: 0;
}

.lux-about-info {
  background: #fff !important;
  padding: 3rem 1.25rem;
}

.lux-about-info__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lux-about-info__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.lux-about-info__card {
  border: 1px solid var(--lux-line);
  background: #fff;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.lux-about-info__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin-bottom: 0.65rem;
}

.lux-about-info__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lux-ink-muted);
}

.lux-about-info__link {
  color: var(--lux-ink-muted) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(184, 130, 57, 0.35);
  transition: color 0.2s ease;
}

.lux-about-info__link:hover,
.lux-about-info__link:focus-visible {
  color: var(--lux-primary) !important;
}

/* Therapies block on About: visually separated "Ceremonies" band */
.lux-scope .lux-about .therapies-overview {
  position: relative;
  z-index: 1;
  background: var(--lux-bg-tint) !important;
  padding: 2.6rem 0 3rem !important;
  margin-top: 0;
  border-top: 1px solid rgba(184, 130, 57, 0.28);
  border-bottom: 1px solid rgba(44, 35, 25, 0.1);
  min-height: 0 !important;
}

.lux-scope .lux-about .therapies-overview::before,
.lux-scope .lux-about .therapies-overview::after {
  display: none !important;
}

.lux-scope .lux-about .therapies-overview .lux-therapies-heading {
  margin-bottom: 0.35rem;
}

.lux-scope .lux-about .therapies-overview .lux-therapies-section-kicker {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lux-primary);
}

.lux-scope .lux-about .therapies-overview .lux-therapies-section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2b241d;
}

.lux-scope .lux-about .therapies-overview .lux-therapies-section-lead {
  margin: 0.9rem auto 2.75rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(44, 35, 25, 0.6);
}

.lux-scope .lux-about .therapies-overview .lux-therapies-section-link {
  display: inline-block;
  margin: -1.85rem auto 2.4rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 130, 57, 0.45);
  padding-bottom: 0.2rem;
}

.lux-scope .lux-about .therapies-overview .lux-therapies-section-link:hover,
.lux-scope .lux-about .therapies-overview .lux-therapies-section-link:focus-visible {
  color: #9d6e2d;
  border-bottom-color: #9d6e2d;
}

/* About-only journeys block: white + distinct identity vs ceremonies */
.lux-scope .lux-about .lux-about-journeys-overview {
  position: relative;
  z-index: 1;
  background: #fff !important;
  border-top: 0;
  border-bottom: 0;
  padding-bottom: 2.5rem !important;
}

.lux-scope .lux-about .lux-about-journeys-overview .lux-therapies-section-kicker {
  color: rgba(44, 35, 25, 0.52);
  letter-spacing: 0.2em;
}

.lux-scope .lux-about .lux-about-journeys-overview .lux-therapies-section-title {
  color: var(--lux-primary);
  letter-spacing: 0.2em;
}

.lux-scope .lux-about .lux-about-journeys-overview .lux-therapies-section-lead {
  color: rgba(44, 35, 25, 0.66);
  max-width: 46rem;
}

/* About page journeys section: hide card prices */
.lux-scope .lux-about .lux-about-journeys-overview .lux-card-price {
  display: none !important;
}

/* About journeys cards: rebalance layout now that price is hidden */
.lux-scope .lux-about .lux-about-journeys-overview .lux-ceremony-card__footer {
  justify-content: flex-end;
}

.lux-scope .lux-about .lux-about-journeys-overview .lux-ceremony-card__footer .lux-card-actions {
  margin-left: auto;
  gap: 1rem;
}

.lux-scope .lux-about .lux-about-journeys-overview .lux-ceremony-card .d-text p {
  margin-bottom: 1.5rem;
}

.lux-about-mid {
  background: #f3f0eb;
  padding: 3.5rem 1.25rem 4rem;
  border-top: 0;
}

.lux-about-mid__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .lux-about-mid__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: center;
  }
}

.lux-about-mid__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lux-about-thumb {
  margin: 0;
  padding: 0.5rem;
  background: #fff;
  box-shadow: 0 12px 36px rgba(44, 35, 25, 0.08);
  border: 1px solid rgba(44, 35, 25, 0.05);
}

.lux-about-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.lux-about-mid__title {
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 1.9vw, 1.52rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}

.lux-about-mid__cta {
  display: inline-block;
  margin-top: 0.25rem;
}

/* Testimonials (About): guest voices layout — warm paper, gold accents, serif quote */
.lux-testimonials {
  position: relative;
  isolation: isolate;
  background: var(--lux-bg-tint) !important;
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
  padding: 3.75rem 0 3.5rem;
  margin: 0;
}

.lux-about .lux-testimonials {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.lux-about .lux-testimonials .owl-carousel {
  display: block;
  visibility: visible;
}

.lux-testimonials--guest-voices {
  background: #f9f7f4 !important;
}

.lux-testimonials__intro {
  margin-bottom: 2.35rem;
}

.lux-testimonials__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 0.85rem;
}

.lux-testimonials__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0;
  line-height: 1.2;
}

.lux-scope .lux-testimonials__slide {
  text-align: center;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.lux-testimonials__card,
.lux-scope .lux-testimonials__card {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2rem 1.85rem 1.5rem;
  background: #fff;
  border: 1px solid var(--lux-border);
  border-radius: 3px;
  box-shadow:
    0 1px 2px rgba(44, 35, 25, 0.04),
    0 14px 36px rgba(44, 35, 25, 0.06);
}

.lux-scope .lux-testimonials__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--lux-primary);
  opacity: 0.22;
  margin: 0 0 0.35rem;
  user-select: none;
}

.lux-scope .lux-testimonials__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.lux-scope .lux-testimonials__quote-body {
  overflow: hidden;
  max-height: none;
  transition: max-height 0.35s ease;
}

.lux-scope .lux-testimonials__slide--long:not(.is-expanded) .lux-testimonials__quote-body {
  position: relative;
  max-height: 10.75rem;
}

.lux-scope .lux-testimonials__slide--long:not(.is-expanded) .lux-testimonials__quote-body::after {
  content: '…';
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  font-style: italic;
  line-height: 1.72;
  color: var(--lux-ink);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 58%);
  pointer-events: none;
}

.lux-scope .lux-testimonials__quote p,
.lux-scope .lux-testimonials__quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.72;
  font-style: italic;
  font-weight: 400;
  color: var(--lux-ink);
  margin: 0;
}

.lux-scope .lux-testimonials__expand {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(184, 130, 57, 0.35);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-primary);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.lux-scope .lux-testimonials__expand:hover {
  background: var(--lux-primary-soft);
  border-color: rgba(184, 130, 57, 0.55);
  color: var(--lux-ink);
}

.lux-scope .lux-testimonials__expand:focus-visible {
  outline: 2px solid var(--lux-primary);
  outline-offset: 3px;
}

.lux-testimonials__attribution,
.lux-scope .lux-testimonials__attribution {
  margin: 1.35rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--lux-border);
  background: none !important;
  box-shadow: none !important;
}

.lux-testimonials__reviewer-row,
.lux-scope .lux-testimonials__reviewer-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
  background: none !important;
}

.lux-testimonials__avatar-wrap,
.lux-scope .lux-testimonials__avatar-wrap {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--lux-secondary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--lux-border);
}

.lux-testimonials__avatar-wrap--photo .lux-testimonials__avatar-initial,
.lux-scope .lux-testimonials__avatar-wrap--photo .lux-testimonials__avatar-initial {
  display: none;
}

.lux-testimonials__avatar-initial,
.lux-scope .lux-testimonials__avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
  background: var(--lux-secondary);
  color: var(--lux-muted-foreground);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lux-scope .lux-testimonials__reviewer-copy {
  min-width: 0;
  flex: 1;
}

.lux-scope .lux-testimonials__author {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0;
  line-height: 1.35;
}

.lux-scope .lux-testimonials__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  margin: 0.28rem 0 0;
  line-height: 1;
}

.lux-scope .lux-testimonials__star {
  color: rgba(44, 35, 25, 0.14);
  font-size: 0.8rem;
  line-height: 1;
}

.lux-scope .lux-testimonials__star.is-filled {
  color: var(--lux-primary);
}

.lux-scope .lux-testimonials__source-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.65rem;
  margin: 0.75rem 0 0;
  padding-left: 3.25rem;
  font-family: var(--font-heading);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lux-scope .lux-testimonials__verified {
  color: var(--lux-muted-foreground);
}

.lux-scope .lux-testimonials__google-link {
  color: var(--lux-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 130, 57, 0.35);
}

.lux-scope .lux-testimonials__google-link:hover {
  color: var(--lux-ink);
  border-bottom-color: var(--lux-ink);
}

.lux-testimonials__carousel-shell .lux-testimonials__carousel-index {
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 35, 25, 0.4);
  text-align: center;
  pointer-events: none;
  z-index: 2;
}

.lux-scope .lux-testimonials__carousel .owl-nav {
  display: contents;
}

.lux-testimonials__carousel-shell {
  position: relative;
  padding: 0 0.25rem 2.75rem;
  max-width: 38rem;
  margin: 0 auto;
}

/* Carousel: prev — index — next on one row (Owl 2) */
.lux-scope .lux-testimonials__carousel.owl-carousel {
  display: grid;
  grid-template-columns: minmax(2.75rem, auto) 1fr minmax(2.75rem, auto);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.35rem;
  row-gap: 1.25rem;
}

.lux-scope .lux-testimonials__carousel .owl-stage-outer {
  grid-column: 1 / -1;
  grid-row: 1;
}

.lux-scope .lux-testimonials__carousel .owl-item {
  display: flex;
  justify-content: center;
}

.lux-scope .lux-testimonials__carousel .owl-item .lux-testimonials__slide {
  width: 100%;
}

.lux-scope .lux-testimonials__carousel .owl-prev,
.lux-scope .lux-testimonials__carousel .owl-next {
  position: static;
  grid-row: 2;
  margin: 0 !important;
}

.lux-scope .lux-testimonials__carousel .owl-prev {
  grid-column: 1;
  justify-self: start;
}

.lux-scope .lux-testimonials__carousel .owl-next {
  grid-column: 3;
  justify-self: end;
}

.lux-scope .lux-testimonials__carousel .owl-dots {
  display: none !important;
}

.lux-scope .lux-testimonials__carousel .owl-nav button.owl-prev,
.lux-scope .lux-testimonials__carousel .owl-nav button.owl-next {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid var(--lux-border) !important;
  background: #fff !important;
  color: var(--lux-muted-foreground) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(44, 35, 25, 0.06);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.lux-scope .lux-testimonials__carousel .owl-nav button.owl-prev:hover,
.lux-scope .lux-testimonials__carousel .owl-nav button.owl-next:hover {
  background: var(--lux-primary-soft) !important;
}

.lux-scope .lux-testimonials__carousel .owl-nav button.owl-prev:focus-visible,
.lux-scope .lux-testimonials__carousel .owl-nav button.owl-next:focus-visible {
  outline: 2px solid var(--lux-primary);
  outline-offset: 2px;
}

.lux-scope .lux-testimonials__carousel .lux-testimonials__nav-icon {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 300;
}

.lux-scope .lux-testimonials__carousel .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px 4px;
  background: rgba(44, 35, 25, 0.2);
  border-radius: 999px;
  transition:
    width 0.25s ease,
    background 0.2s ease;
}

.lux-scope .lux-testimonials__carousel .owl-dot.active span {
  width: 1.75rem;
  background: var(--lux-primary);
}

.lux-scope .lux-testimonials__carousel .owl-dot:hover span {
  background: rgba(184, 130, 57, 0.55);
}

@media (max-width: 575px) {
  .lux-testimonials__card,
  .lux-scope .lux-testimonials__card {
    padding: 1.65rem 1.25rem 1.25rem;
  }

  .lux-testimonials__reviewer-row,
  .lux-scope .lux-testimonials__reviewer-row {
    justify-content: center;
  }

  .lux-scope .lux-testimonials__source-line {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .lux-about-hero {
    padding: 3.5rem 2rem 4.5rem;
  }
}

/* ---- Gallery (Replit-style) ---- */
.lux-gallery-page {
  background: #fff;
}

.lux-gallery-hero {
  text-align: center;
  padding: 2.75rem 1.25rem 2.25rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lux-gallery-hero {
    padding: 3.25rem 2rem 2.75rem;
  }
}

.lux-gallery-hero__display {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 200;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lux-ink);
  line-height: 1.2;
  margin: 0 0 1.35rem;
}

.lux-gallery-hero__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.66);
}

.lux-scope #section-main.lux-gallery-main {
  padding: 0.5rem 1.25rem 4.5rem !important;
  background: #fff !important;
}

@media (min-width: 768px) {
  .lux-scope #section-main.lux-gallery-main {
    padding: 0.75rem 2rem 5rem !important;
  }
}

/* Replit Gallery.tsx: CSS columns masonry — avoids legacy #gallery isotope clashes */
.lux-gallery__grid {
  max-width: 80rem;
  margin: 0 auto;
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 640px) {
  .lux-gallery__grid {
    column-count: 2;
    column-gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lux-gallery__grid {
    column-count: 3;
    column-gap: 1.5rem;
  }
}

.lux-gallery-card {
  margin: 0 0 1.5rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.lux-gallery-card__link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.lux-gallery-card__link:hover .lux-gallery-card__frame,
.lux-gallery-card__link:focus-visible .lux-gallery-card__frame {
  box-shadow: 0 8px 28px rgba(44, 35, 25, 0.08);
}

.lux-gallery-card__link:focus-visible {
  outline: none;
}

.lux-gallery-card__link:focus-visible .lux-gallery-card__frame {
  outline: 2px solid var(--lux-primary);
  outline-offset: 3px;
}

.lux-gallery-card__frame {
  margin: 0;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid rgba(44, 35, 25, 0.1);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.lux-gallery-card__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ---- Contact (Replit split layout) ---- */
.lux-contact {
  background: #fff;
}

.lux-contact-flash {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  font-size: 0.92rem;
}

.lux-contact-flash--error {
  color: #8a2c2c;
  background: rgba(138, 44, 44, 0.06);
  border: 1px solid rgba(138, 44, 44, 0.2);
  padding: 0.85rem 1rem;
  border-radius: 2px;
}

.lux-contact__split {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .lux-contact__split {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--lux-header-h));
    align-items: stretch;
  }
}

.lux-contact__visual {
  position: relative;
  min-height: 46vh;
  overflow: hidden;
  background: #2a241d;
}

@media (min-width: 1024px) {
  .lux-contact__visual {
    min-height: calc(100vh - var(--lux-header-h));
  }
}

.lux-contact__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-contact-location-card {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  max-width: 22rem;
  margin-right: auto;
  padding: 1.4rem 1.25rem 1.5rem;
  background: #fff;
  box-shadow: 0 20px 55px rgba(44, 35, 25, 0.18);
  border: 1px solid rgba(44, 35, 25, 0.06);
}

@media (min-width: 1024px) {
  .lux-contact-location-card {
    left: 2rem;
    right: auto;
    bottom: 2.25rem;
    max-width: 19.5rem;
  }
}

.lux-contact-location-card__title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1rem;
}

.lux-contact-location-card__address {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(44, 35, 25, 0.75);
  margin-bottom: 1rem;
}

.lux-contact-location-card__rule {
  height: 1px;
  margin: 0 0 1rem;
  background: rgba(44, 35, 25, 0.12);
  border: 0;
}

.lux-contact-location-card__line {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.lux-contact-location-card__line:last-child {
  margin-bottom: 0;
}

.lux-contact-location-card__link {
  color: rgba(44, 35, 25, 0.78) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(184, 130, 57, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lux-contact-location-card__link:hover,
.lux-contact-location-card__link:focus-visible {
  color: var(--lux-primary) !important;
  border-bottom-color: var(--lux-primary);
}

.lux-contact__panel {
  padding: 2.75rem 1.35rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .lux-contact__panel {
    padding: 3rem 4rem 4rem 3.5rem;
  }
}

.lux-contact__kicker {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 0 0 1rem;
}

.lux-contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 200;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lux-ink);
  line-height: 1.15;
  margin: 0 0 1.35rem;
}

.lux-contact__lead {
  margin: 0 0 2.25rem;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.68);
  max-width: 28rem;
}

.lux-contact-form {
  max-width: 28rem;
}

.lux-contact-field {
  margin-bottom: 1.35rem;
}

.lux-contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin-bottom: 0.45rem;
}

.lux-contact-input,
.lux-contact-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--lux-ink);
  background: #f4f3f0;
  border: 1px solid rgba(44, 35, 25, 0.1);
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lux-contact-input::placeholder,
.lux-contact-textarea::placeholder {
  color: rgba(44, 35, 25, 0.38);
}

.lux-contact-input:hover,
.lux-contact-textarea:hover {
  border-color: rgba(184, 130, 57, 0.35);
}

.lux-contact-input:focus-visible,
.lux-contact-textarea:focus-visible {
  outline: none;
  border-color: var(--lux-primary);
  background: #fafaf8;
}

.lux-contact-textarea {
  resize: vertical;
  min-height: 10rem;
  line-height: 1.65;
}

.lux-contact-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1.05rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--lux-primary);
  border: 1px solid var(--lux-primary);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.lux-contact-submit:hover,
.lux-contact-submit:focus-visible {
  background: #9d702f;
  border-color: #9d702f;
}

.lux-contact-map-section {
  padding: 3rem 1.25rem 4rem;
  background: var(--lux-bg-tint);
  border-top: 1px solid var(--lux-line);
}

.lux-contact-map-section__title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lux-primary);
  text-align: center;
  margin: 0 0 1.75rem;
}

.lux-contact-map-wrap {
  max-width: 72rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(44, 35, 25, 0.08);
  border: 1px solid rgba(44, 35, 25, 0.08);
}

.lux-contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: min(50vh, 28rem);
  border: 0;
}

.lux-contact-success {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.35rem 3rem;
  text-align: center;
}

.lux-contact-success__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.25rem;
}

.lux-contact-success__text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(44, 35, 25, 0.72);
  margin: 0 0 1rem;
}

/* ---- FAQ / Questions (Replit-style) ---- */
.lux-faq-hero {
  background: #f6f5f2;
  text-align: center;
  padding: 2.75rem 1.25rem 3rem;
  border-bottom: 1px solid rgba(44, 35, 25, 0.08);
}

.lux-faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 200;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lux-ink);
  margin: 0 0 1.15rem;
  line-height: 1.2;
}

.lux-faq-hero__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(44, 35, 25, 0.65);
}

.lux-scope #section-main.lux-faq-main {
  padding: 2.5rem 1.25rem 4.5rem !important;
  background: #fff !important;
}

@media (min-width: 768px) {
  .lux-scope #section-main.lux-faq-main {
    padding: 3rem 2rem 5rem !important;
  }
}

.lux-faq-inner {
  max-width: 46rem;
  margin: 0 auto;
}

.lux-faq-category {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-primary);
  margin: 2.75rem 0 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(44, 35, 25, 0.12);
}

.lux-faq-inner > .lux-faq-category:first-of-type {
  margin-top: 0;
}

.lux-faq-accordion {
  --lux-faq-line: rgba(44, 35, 25, 0.1);
}

.lux-faq-accordion .accordion-item {
  border-left: 0;
  border-right: 0;
  border-color: var(--lux-faq-line);
  background: transparent;
}

.lux-faq-accordion .accordion-header {
  margin: 0;
}

.lux-faq-accordion .accordion-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1.1rem 2.5rem 1.1rem 0;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--lux-ink) !important;
  transition: color 0.2s ease;
}

.lux-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--lux-primary) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.lux-faq-accordion .accordion-button::after {
  position: absolute;
  right: 0.15rem;
  top: 50%;
  margin-top: -0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "" !important;
  border: 0 !important;
  background-image: none !important;
  background: none !important;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease, color 0.2s ease;
}

.lux-faq-accordion .accordion-button:not(.collapsed)::after {
  margin-top: 0.1rem;
  transform: rotate(-135deg);
}

.lux-faq-accordion .accordion-button:focus {
  z-index: 2;
  border-color: transparent;
  box-shadow: none !important;
  outline: none;
}

.lux-faq-accordion .accordion-button:focus-visible {
  outline: 2px solid var(--lux-primary);
  outline-offset: 2px;
}

.lux-faq-accordion .accordion-body {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(44, 35, 25, 0.66);
}

.lux-faq-accordion .accordion-body p {
  margin: 0 0 0.85rem;
}

.lux-faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.lux-faq-accordion .accordion-body ul {
  margin: 0.5rem 0 0.85rem;
  padding-left: 1.2rem;
}

/* --------------------------------------------------------------------------
 * Full-page loader (Replit-style: cream field, gold logo breath, skeleton bars)
 * -------------------------------------------------------------------------- */
.lux-page-loader {
  position: fixed;
  inset: 0;
  z-index: 100700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0)
    env(safe-area-inset-left, 0);
  background: linear-gradient(
    165deg,
    var(--lux-bg-tint) 0%,
    var(--lux-bg) 48%,
    #fff 100%
  );
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.55s;
}

.lux-page-loader.lux-page-loader--exiting,
body.lux-loaded #lux-page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.lux-loaded #lux-page-loader {
  display: none;
}

.lux-page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
}

.lux-page-loader__logo {
  display: block;
  width: min(38vw, 168px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(44, 35, 25, 0.07));
  animation: lux-loader-logo 2.6s ease-in-out infinite;
}

.lux-page-loader__skeleton {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
  width: min(54vw, 232px);
}

.lux-page-loader__bar {
  display: block;
  height: 5px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    var(--lux-primary-soft) 0%,
    rgba(184, 130, 57, 0.28) 48%,
    var(--lux-primary-soft) 100%
  );
  background-size: 200% 100%;
  animation: lux-loader-bar 1.35s ease-in-out infinite;
}

.lux-page-loader__bar--1 {
  width: 100%;
  animation-delay: 0s;
}

.lux-page-loader__bar--2 {
  width: 74%;
  animation-delay: 0.14s;
}

.lux-page-loader__bar--3 {
  width: 56%;
  animation-delay: 0.28s;
}

@keyframes lux-loader-logo {
  0%,
  100% {
    opacity: 0.78;
    transform: translateZ(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateZ(0) scale(1.035);
  }
}

@keyframes lux-loader-bar {
  0%,
  100% {
    opacity: 0.38;
    background-position: 100% 50%;
  }

  50% {
    opacity: 1;
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-page-loader__logo,
  .lux-page-loader__bar {
    animation: none !important;
  }

  .lux-page-loader__logo {
    opacity: 1;
  }

  .lux-page-loader__bar {
    opacity: 0.55;
    background: var(--lux-primary-soft);
  }

  .lux-page-loader {
    transition-duration: 0.12s;
    transition-timing-function: ease-out;
  }

  .lux-page-loader.lux-page-loader--exiting {
    transition-delay: 0s;
  }
}

/* ---- Home: full-bleed Supersized hero (legacy #content sat above z-index:-999 slides) ---- */
body.lux-home {
  padding-top: 0 !important;
}

body.lux-home #supersized {
  z-index: 0 !important;
}

body.lux-home #content.home {
  background: transparent !important;
  z-index: 1;
  position: relative;
  min-height: 100vh;
}

body.lux-home .slider-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

body.lux-home #slidecaption {
  z-index: 2;
  box-sizing: border-box;
  padding-inline: clamp(0.75rem, 4vw, 2.75rem);
  /* Legacy uses display:table + table-cell — that column width forces ugly mid-word breaks */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  container-type: inline-size;
  container-name: lux-hero-caption;
}

body.lux-home #slidecaption .slider-text {
  box-sizing: border-box;
  width: 100%;
  max-width: min(100vw, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 3vh, 1.35rem);
}

body.lux-home #slidecaption h2 {
  /*
   * Single-word slides: never break mid-word (LIBERT|E). nowrap + font capped by
   * container (cqw) so long tracked words shrink to fit one line.
   */
  font-size: clamp(1.85rem, min(10vw + 0.45rem, 15cqw + 0.35rem), 7.5rem) !important;
  letter-spacing: 0.08em;
  padding-left: 0.08em;
  line-height: 1.06;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@supports not (container-type: inline-size) {
  body.lux-home #slidecaption h2 {
    font-size: clamp(1.85rem, 8.25vw + 0.5rem, 7.5rem) !important;
  }
}

@media (max-width: 479px) {
  body.lux-home #slidecaption h2 {
    font-size: clamp(1.75rem, min(9.5vw + 0.4rem, 14cqw + 0.3rem), 7.5rem) !important;
    letter-spacing: 0.06em;
    padding-left: 0.06em;
    line-height: 1.05;
  }
}

@media (min-width: 480px) {
  body.lux-home #slidecaption h2 {
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    line-height: 1.08;
  }
}

@media (min-width: 768px) {
  body.lux-home #slidecaption h2 {
    letter-spacing: 0.14em;
    padding-left: 0.14em;
    line-height: 1.1;
  }
}

@media (min-width: 1200px) {
  body.lux-home #slidecaption h2 {
    letter-spacing: 0.18em;
    padding-left: 0.18em;
    line-height: 1.12;
  }
}

body.lux-home #slidecaption .btn-line,
body.lux-home #slidecaption a.btn-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  overflow: visible;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.2vw + 9px, 14px);
  font-weight: 400;
  letter-spacing: clamp(0.08em, 0.2vw, 0.14em);
  text-transform: uppercase;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 0;
  background: rgba(12, 10, 8, 0.38) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  padding: 0.72rem clamp(1.5rem, 4.5vw, 2.25rem);
  max-width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* CTA stays visually subordinate to the headline on narrow viewports */
@media (max-width: 992px) {
  body.lux-home #slidecaption .btn-line,
  body.lux-home #slidecaption a.btn-line {
    font-size: clamp(11px, 0.75vw + 9px, 13px);
    padding: 0.62rem clamp(1.15rem, 3.5vw, 1.75rem);
    letter-spacing: 0.1em;
  }
}

body.lux-home #slidecaption .btn-line span,
body.lux-home #slidecaption a.btn-line span {
  color: inherit !important;
}

/* Legacy theme uses a dark sliding panel on hover — swap for a soft lift */
body.lux-home #slidecaption a.btn-line::before {
  display: none !important;
}

body.lux-home #slidecaption a.btn-line:hover,
body.lux-home #slidecaption a.btn-line:focus-visible {
  color: #fff !important;
  border-color: #fff;
  background: rgba(12, 10, 8, 0.52) !important;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  outline: none;
}

/*
 * Thin arrow instead of FontAwesome chevron (legacy uses absolute ::after).
 * Inline-flex + static pseudo keeps spacing even with long translated labels.
 */
body.lux-home #slidecaption .btn-line::after,
body.lux-home #slidecaption a.btn-line::after {
  position: static !important;
  inset: auto !important;
  font-family: var(--font-heading), system-ui, sans-serif !important;
  content: "→" !important;
  font-size: 1em;
  font-weight: 400;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--lux-primary-hex);
  opacity: 1;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

body.lux-home #slidecaption a.btn-line:hover::after,
body.lux-home #slidecaption a.btn-line:focus-visible::after {
  padding-left: 0 !important;
  transform: translateX(4px);
  opacity: 1;
}

/*
 * Supersized shutter bar: stronger presence on small screens (dots only)
 * — stays above slides, respects safe areas.
 */
@media (max-width: 1099px) {
  body.lux-home #controls-wrapper {
    height: 64px;
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
    z-index: 10060;
  }

  body.lux-home #controls {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.25rem, env(safe-area-inset-right, 0px));
  }

  body.lux-home ul#slide-list {
    padding: 20px 0;
  }

  body.lux-home ul#slide-list li {
    width: 34px;
    height: 20px;
    margin: 0 9px;
  }

  body.lux-home ul#slide-list li a {
    width: 14px;
    height: 14px;
    margin-top: 9px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  }

  body.lux-home ul#slide-list li.current-slide a {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.2),
      0 0 12px rgba(255, 255, 255, 0.35);
  }
}
