:root {
  --bg: #0a0a0a;
  --bg-alt: #181818;
  --surface: rgba(255, 250, 245, 0.12);
  --surface-solid: #faf7f3;
  --ink: #faf7f3;
  --muted: rgba(245, 235, 220, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --bronze: #e8e6e2;
  --bronze-dark: #b8b8bc;
  --bronze-light: #f5f5f5;
  --accent: #c8c8cc;
  --shadow: 0 26px 68px rgba(10, 10, 10, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatGentle {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes sweepGlow {
  0% {
    transform: translateX(-18%);
    opacity: 0;
  }
  25% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(18%);
    opacity: 0;
  }
}

@keyframes diamondSparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scale(1);
  }
}

@keyframes diamondGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(240, 248, 255, 0.1), inset 0 0 20px rgba(240, 248, 255, 0.05);
  }
  50% {
    box-shadow: 0 0 30px rgba(240, 248, 255, 0.2), inset 0 0 30px rgba(240, 248, 255, 0.1);
  }
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 230, 226, 0.06) 0%, transparent 40%),
    linear-gradient(135deg, #1a1a1a 0%, var(--bg) 56%, #000000 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
  border-radius: 2px;
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

main {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.2);
  animation: fadeDown 420ms ease both;
}

.site-header__inner {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(250, 244, 239, 0.78);
}

.site-nav__link {
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #ffffff;
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--bronze);
  border-radius: 999px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
}

.button-primary {
  background: linear-gradient(135deg, #e8e6e2, #b8b8bc);
  color: #1a1a1a;
  font-weight: 600;
}

.button-primary:hover {
  background: linear-gradient(135deg, #f5f5f5, #e8e6e2);
}

.button-primary:focus-visible {
  outline: 3px solid #1a1a1a;
  outline-offset: 2px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-ghost:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
}

.button-compact {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-wide {
  width: 100%;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.mobile-menu-button,
.icon-button,
.modal-close {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 4px;
  transition: background-color 180ms ease, outline 180ms ease;
}

.mobile-menu-button:focus-visible,
.icon-button:focus-visible,
.modal-close:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
  background: rgba(232, 230, 226, 0.1);
}

.mobile-menu-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.desktop-only {
  display: inline-flex;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.mobile-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-drawer[hidden],
.modal-backdrop[hidden] {
  display: none !important;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 14, 17, 0.45);
}

/* Typography */
.eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 8px 0;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

blockquote {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--bronze-light);
}

/* Layout Sections */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.page {
  width: 100%;
}

.feature-band {
  width: min(1520px, calc(100% - 48px));
  margin: 4rem auto;
  padding: 0;
}

.feature-band::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  margin-bottom: 4rem;
}

/* Scroll Video */
.scroll-video {
  --scroll-video-progress: 0;
  --scroll-video-scale: 1;
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 72vh;
}

.scroll-video__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 72vh;
  overflow: hidden;
  transform-origin: center;
}

.scroll-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(var(--scroll-video-scale, 1));
}

.scroll-video__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(232, 230, 226, 0.12) 100%);
  z-index: 10;
}

.scroll-video__content {
  position: relative;
  z-index: 20;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  opacity: 0;
}

.scroll-video.is-active .scroll-video__content,
.scroll-video__content.reveal-ready.is-visible {
  animation: fadeUp 720ms ease 240ms both;
}

.scroll-video__content h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 1.2rem;
  color: #fff;
}

.scroll-video__content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(250, 244, 239, 0.9);
}

.scroll-video__meter {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(232, 230, 226, 0.2);
  z-index: 5;
}

.scroll-video__meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--bronze), var(--accent));
  transform: scaleX(var(--scroll-video-progress, 0));
  transform-origin: left;
  transition: transform 0.05s linear;
}

.scroll-video.is-ended {
  pointer-events: none;
}

.scroll-video.is-ended .scroll-video__stage {
  transform: scale(1.02);
}

.scroll-video__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(232, 230, 226, 0.06) 0%, transparent 40%), linear-gradient(135deg, #1a1a1a 0%, var(--bg) 56%, #000000 100%);
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scroll-video__loader.is-error {
  opacity: 0;
  pointer-events: none;
}

.scroll-video__loader:not(.is-loading):not(.is-error) {
  display: none;
}

.scroll-video__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(232, 230, 226, 0.2);
  border-top-color: var(--bronze);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Feature */
.about-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin: 4rem auto;
  width: min(900px, calc(100% - 48px));
  text-align: center;
}

.about-feature__text {
  display: grid;
  gap: 1.5rem;
}

.about-feature__text h2 {
  color: #fff;
}

.about-feature__text blockquote {
  padding: 2rem;
  border-left: 3px solid var(--bronze);
  background: rgba(232, 230, 226, 0.08);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 600px;
}

.about-feature__photo {
  display: none;
}

.about-feature__image {
  display: none;
}

.about-feature .hero-actions {
  justify-content: center;
}

/* Trust Strip */
.trust-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 24px;
  background: rgba(232, 230, 226, 0.06);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 4rem 0;
}

.trust-card {
  display: grid;
  gap: 0.8rem;
  text-align: center;
  padding: 1rem 0;
  opacity: 0;
}

.trust-card.reveal-ready.is-visible {
  animation: fadeUp 600ms ease both;
}

.trust-card strong {
  font-size: 2.2rem;
  color: var(--bronze);
  font-weight: 700;
}

.trust-card span {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
}

.service-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 240ms ease, background-color 240ms ease, border-color 240ms ease;
  opacity: 0;
}

.service-card.reveal-ready.is-visible {
  animation: fadeUp 600ms ease both;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(232, 230, 226, 0.08);
  border-color: rgba(232, 230, 226, 0.3);
}

.service-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--bronze);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  color: #fff;
  font-size: 1.15rem;
}

/* Gallery Carousel */
.gallery-carousel {
  width: 100%;
  margin: 2rem 0;
}

.gallery-carousel.feature-band {
  margin: 2rem auto;
  width: 100%;
}

.gallery-carousel.feature-band::before {
  display: none;
}

.gallery-carousel__button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 230, 226, 0.15);
  border: 1px solid rgba(232, 230, 226, 0.3);
  color: var(--bronze);
  font-size: 1.2rem;
  transition: all 240ms ease;
}

.gallery-carousel__button:hover {
  background: rgba(232, 230, 226, 0.25);
  border-color: var(--bronze);
}

.gallery-slideshow {
  position: relative;
  width: 100%;
}

.gallery-slideshow__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
  overflow: visible;
}

.gallery-slideshow__slide {
  display: grid;
  gap: 1rem;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1), opacity 380ms ease;
  will-change: transform, opacity;
}

.gallery-slideshow__slide:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
  border-radius: 12px;
}

.gallery-slideshow__slide.is-hidden {
  display: none;
}

/* order keeps prev/active/next in left/center/right regardless of DOM position */
.gallery-slideshow__slide.is-prev {
  order: 1;
  transform: scale(0.82);
  opacity: 0.6;
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.gallery-slideshow__slide.is-active {
  order: 2;
  transform: scale(1.12);
  opacity: 1;
  z-index: 3;
  position: relative;
}

.gallery-slideshow__slide.is-next {
  order: 3;
  transform: scale(0.82);
  opacity: 0.6;
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.gallery-slideshow__slide.is-prev:hover,
.gallery-slideshow__slide.is-next:hover {
  opacity: 0.85;
}

.gallery-slideshow__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.gallery-slideshow__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.4));
  pointer-events: none;
}

.gallery-slideshow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tanner-card__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.tanner-card__info h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-slideshow__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
}

.gallery-slideshow__arrows {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.gallery-slideshow__dots {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.gallery-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(232, 230, 226, 0.3);
  cursor: pointer;
  transition: all 240ms ease;
}

.gallery-slideshow__dot.is-active {
  background: var(--bronze);
  transform: scale(1.3);
}

.gallery-slideshow__dot:hover {
  background: rgba(232, 230, 226, 0.6);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem auto 4rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid rgba(232, 230, 226, 0.2);
  border-radius: var(--radius-sm);
  transition: all 240ms ease;
  opacity: 0;
}

.pricing-card.reveal-ready.is-visible {
  animation: fadeUp 600ms ease both;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--bronze);
  background: rgba(232, 230, 226, 0.08);
}

.pricing-card--featured {
  border-color: var(--bronze);
  background: rgba(232, 230, 226, 0.12);
}

.pricing-card__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  justify-content: space-between;
}

.pricing-card__header h3 {
  color: #fff;
  margin-bottom: 0;
}

.pricing-level,
.pricing-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 230, 226, 0.2);
  color: var(--bronze);
}

.pricing-badge {
  background: rgba(232, 230, 226, 0.3);
}

/* Jewel-colored pricing tiers */
.pricing-card--pearl {
  border-top: 6px solid #f5e6d3;
}

.pricing-card--pearl:hover {
  border-top-color: #f5e6d3;
}

.pricing-card--pearl .pricing-card__header h3 {
  color: #f5e6d3;
}

.pricing-card--emerald {
  border-top: 6px solid #2d5016;
}

.pricing-card--emerald:hover {
  border-top-color: #2d5016;
}

.pricing-card--emerald .pricing-card__header h3 {
  color: #2d5016;
}

.pricing-card--sapphire {
  border-top: 6px solid #0f52ba;
}

.pricing-card--sapphire:hover {
  border-top-color: #0f52ba;
}

.pricing-card--sapphire .pricing-card__header h3 {
  color: #0f52ba;
}

.pricing-card--onyx {
  border-top: 6px solid #353935;
}

.pricing-card--onyx:hover {
  border-top-color: #353935;
}

.pricing-card--onyx .pricing-card__header h3 {
  color: #888;
}

.pricing-card--ruby {
  border-top: 6px solid #c71c24;
}

.pricing-card--ruby:hover {
  border-top-color: #c71c24;
}

.pricing-card--ruby .pricing-card__header h3 {
  color: #c71c24;
}

.pricing-card--diamond {
  border-top: 6px solid #f0f8ff;
  position: relative;
  overflow: hidden;
  animation: diamondGlow 3s ease-in-out infinite;
  box-shadow: inset 0 2px 4px rgba(240, 248, 255, 0.2);
}

.pricing-card--diamond:hover {
  border-top-color: #f0f8ff;
}

.pricing-card--diamond .pricing-card__header h3 {
  color: #f0f8ff;
  position: relative;
  z-index: 2;
}

.pricing-card--diamond .pricing-card__header {
  position: relative;
  z-index: 2;
}

.pricing-card--diamond .pricing-card__body {
  position: relative;
  z-index: 2;
}

/* Sparkle effect on Diamond tier */
.pricing-card--diamond .pricing-badge::after {
  content: '✨';
  margin-left: 6px;
  display: inline-block;
  animation: diamondSparkle 2s ease-in-out infinite;
}

.pricing-card__body {
  flex: 1;
  display: grid;
  gap: 1rem;
}

.pricing-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(232, 230, 226, 0.15);
}

.pricing-option:last-child {
  border-bottom: none;
}

.pricing-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bronze);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  padding: 0.8rem;
  background: rgba(232, 230, 226, 0.1);
  border-radius: 6px;
}

/* Pricing Promo */
.pricing-promo {
  grid-column: 1 / -1;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(232, 230, 226, 0.15), rgba(200, 200, 204, 0.1));
  border: 1px solid rgba(232, 230, 226, 0.3);
  border-radius: var(--radius-sm);
  text-align: center;
  opacity: 0;
}

.pricing-promo.reveal-ready.is-visible {
  animation: fadeUp 600ms ease both;
}

.pricing-promo h3 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.pricing-promo p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.promo-item {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(10, 10, 10, 0.3);
  border-radius: 8px;
}

.promo-item strong {
  color: var(--bronze);
  font-size: 1rem;
}

.promo-item span {
  color: var(--bronze-light);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
}

.testimonial-slider__card {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 240ms ease;
}

.testimonial-slider__card.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial-slider__stars {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--bronze);
}

.testimonial-slider__card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 244, 239, 0.95);
  margin-bottom: 0;
}

.testimonial-slider__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial-slider__meta strong {
  color: #fff;
}

.testimonial-slider__meta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-slider__dots {
  display: flex;
  gap: 0.8rem;
}

.testimonial-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(232, 230, 226, 0.3);
  cursor: pointer;
  transition: all 240ms ease;
}

.testimonial-slider__dots button.is-active {
  background: var(--bronze);
  transform: scale(1.3);
}

.testimonial-slider__dots button:hover {
  background: rgba(232, 230, 226, 0.6);
}

/* Showroom CTA */
.showroom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 24px;
  background: rgba(232, 230, 226, 0.06);
  border-top: 1px solid var(--line);
  margin: 4rem 0 0 0;
}

.showroom-cta__copy h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.showroom-cta__copy p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.showroom-cta__copy p a {
  color: var(--bronze);
  text-decoration: none;
}
.showroom-cta__copy p a:hover {
  text-decoration: underline;
}

.hours-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hours-list strong {
  color: var(--bronze);
  font-weight: 600;
}

.showroom-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Contact Band */
.contact-band {
  width: min(1520px, calc(100% - 48px));
  margin: 4rem auto;
}

.contact-band--full {
  width: 100%;
}

.contact-band__details {
  flex: 1;
}

.contact-band__sub {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.contact-collapse {
  max-width: 680px;
  margin: 2rem auto 0;
}

.contact-collapse__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(232, 230, 226, 0.06);
  border: 1px solid rgba(232, 230, 226, 0.2);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.contact-collapse__toggle:hover {
  background: rgba(232, 230, 226, 0.1);
  border-color: rgba(232, 230, 226, 0.35);
}

.contact-collapse__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 280ms ease;
}

.contact-collapse__toggle[aria-expanded="true"] .contact-collapse__chevron {
  transform: rotate(180deg);
}

.contact-collapse__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.contact-collapse__body.is-open {
  max-height: 800px;
}

.contact-collapse__body > .contact-form {
  margin-top: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.contact-form label abbr {
  text-decoration: none;
  color: #ff6b6b;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250, 244, 239, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--bronze);
  outline-offset: -1px;
  background: rgba(255, 255, 255, 0.08);
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  font-size: 0.9rem;
  color: var(--bronze-light);
  min-height: 1.4rem;
  transition: color 200ms ease, opacity 200ms ease;
  opacity: 0;
}

.form-status:not(:empty) {
  opacity: 1;
}

.form-status.is-error {
  color: #ff6b6b;
  animation: slideDown 200ms ease;
}

.form-status.is-success {
  color: #51cf66;
  animation: slideDown 200ms ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form field error states */
.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
}

.contact-form input.is-invalid:focus,
.contact-form textarea.is-invalid:focus {
  outline-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
}

/* Submit button loading state */
.contact-form button[type="submit"].is-loading {
  position: relative;
  color: transparent;
}

.contact-form button[type="submit"].is-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 600ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  opacity: 0;
}

.info-card.reveal-ready.is-visible {
  animation: fadeUp 600ms ease both;
}

.info-card h3 {
  color: #fff;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  padding: 4rem max(24px, calc((100% - 1520px) / 2 + 24px));
  background: rgba(10, 10, 10, 0.6);
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__logo {
  height: 64px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.site-footer p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}

.site-footer__address {
  margin-bottom: 0.4rem !important;
}
.site-footer__address a {
  color: inherit;
  text-decoration: none;
}
.site-footer__address a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.site-footer__copy {
  margin-top: 1rem !important;
  opacity: 0.45;
  font-size: 0.78rem !important;
}

.site-footer a {
  color: var(--bronze);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--bronze-light);
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
}

/* Reveal Animation */
[data-reveal].reveal-ready {
  opacity: 0;
}

[data-reveal].is-visible {
  animation: fadeUp 600ms ease both;
}

/* Responsive */
@media (max-width: 760px) {
  .desktop-only {
    display: none;
  }

  /* Hide nav links on mobile — sidebar handles navigation */
  .site-nav {
    display: none;
  }

  .site-header__inner {
    width: calc(100% - 32px);
    min-height: 64px;
    gap: 12px;
  }

  .brand-logo {
    height: 34px;
  }

  .feature-band {
    width: calc(100% - 24px);
  }

  .about-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: calc(100% - 24px);
    margin: 3rem auto;
    text-align: center;
  }

  .scroll-video {
    min-height: 48vh;
  }

  .scroll-video__stage {
    min-height: 48vh;
  }

  .scroll-video__content {
    padding: 1.5rem;
  }

  .scroll-video__content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .scroll-video__content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 2rem 24px;
  }

  .trust-card strong {
    font-size: 1.8rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .gallery-carousel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-carousel__header .section-heading {
    text-align: left;
  }

  .gallery-slideshow__track {
    grid-template-columns: 1fr;
    max-width: 320px;
    padding: 1rem 0;
  }

  .gallery-slideshow__slide.is-prev,
  .gallery-slideshow__slide.is-next {
    display: none;
  }

  .gallery-slideshow__slide.is-active {
    transform: scale(1);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-promo {
    grid-column: 1 / -1;
    padding: 1.5rem;
  }

  .testimonial-slider__card {
    padding: 1.5rem;
  }

  .testimonial-slider__controls {
    gap: 1rem;
  }

  .showroom-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 24px;
  }

  .showroom-cta__actions {
    flex-direction: column;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 24px;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .feature-band {
    margin: 3rem auto;
  }

  .feature-band::before {
    margin-bottom: 2rem;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button-compact {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    width: calc(100% - 24px);
    min-height: 56px;
    gap: 10px;
  }

  .feature-band {
    width: calc(100% - 16px);
  }

  .about-feature {
    width: calc(100% - 16px);
    gap: 1.5rem;
    margin: 2rem auto;
  }

  .brand-logo {
    height: 30px;
  }

  .header-actions {
    gap: 8px;
  }

  .button-compact {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  /* Versa Spa is the 7th card — span it full width so the grid ends cleanly */
  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
  }

  .pricing-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .pricing-card__body {
    gap: 0;
  }

  .pricing-option {
    padding: 0.45rem 0;
  }

  .pricing-label {
    font-size: 0.78rem;
  }

  .pricing-value {
    font-size: 1rem;
  }

  .pricing-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .pricing-card__header h3 {
    font-size: 1.05rem;
  }

  .pricing-level,
  .pricing-badge {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem 16px;
  }

  .trust-card strong {
    font-size: 1.4rem;
  }

  .trust-card span {
    font-size: 0.78rem;
  }

  /* Service card titles more compact in 2-col */
  .service-card h3 {
    font-size: 0.92rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  /* Location CTA secondary buttons row */
  .showroom-cta__actions {
    gap: 0.75rem;
  }

  .showroom-cta__secondary {
    display: flex;
    gap: 0.75rem;
  }

  .showroom-cta__secondary .button {
    flex: 1;
  }

  .scroll-video {
    min-height: 42vh;
  }

  .scroll-video__stage {
    min-height: 42vh;
  }

  .scroll-video__content h2 {
    font-size: 1.4rem;
  }

  h1, h2 {
    font-size: 1.3rem;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .feature-band {
    margin: 2rem auto;
  }

  .site-footer {
    padding: 1.5rem 16px;
  }
}

/* ─────────────────────────────────────────
   Sidebar Drawer
───────────────────────────────────────── */

.sidebar-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(232, 230, 226, 0.25);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color 200ms ease;
  flex-shrink: 0;
}

.sidebar-toggle:hover {
  border-color: var(--bronze);
}

.sidebar-toggle__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(250, 244, 239, 0.8);
  border-radius: 2px;
  transition: background 200ms ease;
}

.sidebar-toggle:hover .sidebar-toggle__bar {
  background: var(--bronze);
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 149;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

body.sidebar-is-open .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 272px;
  z-index: 150;
  background: #0d0d0d;
  border-right: 1px solid rgba(232, 230, 226, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

body.sidebar-is-open .sidebar {
  transform: translateX(0);
}

.page-wrap {
  transition: margin-left 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 860px) {
  body.sidebar-is-open .page-wrap {
    margin-left: 272px;
  }
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(232, 230, 226, 0.1);
  flex-shrink: 0;
}

.sidebar__logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
}

.sidebar__close {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(232, 230, 226, 0.2);
  background: transparent;
  color: rgba(250, 244, 239, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.sidebar__close:hover {
  color: #fff;
  border-color: var(--bronze);
}

.sidebar__close svg {
  width: 15px;
  height: 15px;
}

.sidebar__section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(232, 230, 226, 0.45);
  padding: 1.25rem 1.5rem 0.375rem;
  font-weight: 600;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.625rem;
  flex: 1;
  gap: 2px;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 8px;
  color: rgba(250, 244, 239, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 200ms ease;
  letter-spacing: 0.01em;
}

.sidebar__link:hover {
  color: #fff;
  background: rgba(232, 230, 226, 0.08);
}

.sidebar__link.is-active {
  color: var(--bronze);
  background: rgba(232, 230, 226, 0.1);
}

.sidebar__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.7;
}

.sidebar__link.is-active .sidebar__icon,
.sidebar__link:hover .sidebar__icon {
  opacity: 1;
}

.sidebar__footer {
  border-top: 1px solid rgba(232, 230, 226, 0.1);
  padding: 0.875rem 0.625rem;
  flex-shrink: 0;
}

.sidebar__back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  color: rgba(250, 244, 239, 0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 200ms ease;
}

.sidebar__back:hover {
  color: rgba(250, 244, 239, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.sidebar__back svg {
  width: 13px;
  height: 13px;
}

/* ─────────────────────────────────────────
   Explore Sub-page Layout
───────────────────────────────────────── */

.explore-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(232, 230, 226, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.explore-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.explore-page__heading {
  margin-bottom: 0.75rem;
}

.explore-page__subtitle {
  color: rgba(250, 244, 239, 0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Room cards */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.room-card {
  background: rgba(232, 230, 226, 0.03);
  border: 1px solid rgba(232, 230, 226, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 240ms ease;
}

.room-card:hover {
  border-color: rgba(232, 230, 226, 0.35);
}

.room-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #141414 0%, rgba(232, 230, 226, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__placeholder-icon {
  width: 52px;
  height: 52px;
  color: rgba(232, 230, 226, 0.18);
}

.room-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(232, 230, 226, 0.3);
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}

.room-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.room-card__type {
  font-size: 0.72rem;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.room-card__name {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.room-card__desc {
  font-size: 0.875rem;
  color: rgba(250, 244, 239, 0.6);
  line-height: 1.65;
}

/* Lotion cards */
.lotion-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.lotion-card {
  background: rgba(232, 230, 226, 0.03);
  border: 1px solid rgba(232, 230, 226, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 240ms ease;
}

.lotion-card:hover {
  border-color: rgba(232, 230, 226, 0.35);
  transform: translateY(-3px);
}

.lotion-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(165deg, #111111 0%, rgba(232, 230, 226, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lotion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.lotion-card__placeholder-icon {
  width: 44px;
  height: 44px;
  color: rgba(232, 230, 226, 0.15);
}

.lotion-card__body {
  padding: 0.875rem 1rem 1rem;
}

.lotion-card__brand {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bronze);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.lotion-card__name {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.375rem;
  line-height: 1.35;
  font-weight: 500;
}

.lotion-card__desc {
  font-size: 0.78rem;
  color: rgba(250, 244, 239, 0.5);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.lotion-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.lotion-card__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(250, 244, 239, 0.9);
}

.lotion-card__tags {
  list-style: none;
  margin: 0 0 0.875rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lotion-card__tags li {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(232, 230, 226, 0.6);
  background: rgba(232, 230, 226, 0.07);
  border: 1px solid rgba(232, 230, 226, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.lotions-store-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232, 230, 226, 0.5);
  border: 1px solid rgba(232, 230, 226, 0.18);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.875rem;
}

.lotions-store-note svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--bronze);
}

.lotion-card__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(232, 230, 226, 0.4);
  background: none;
  border: none;
  padding: 0.25rem 0;
  margin-top: 0.375rem;
  cursor: pointer;
  transition: color 200ms ease;
}

.lotion-card__toggle:hover {
  color: var(--bronze);
}

.lotion-card__chevron {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 220ms ease;
}

.lotion-card__toggle[aria-expanded="true"] .lotion-card__chevron {
  transform: rotate(180deg);
}

.lotion-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.lotion-card__details.is-open {
  max-height: 420px;
}

.lotion-card__details .lotion-card__desc {
  margin-top: 0.625rem;
}

/* Before & After */
.ba-intro {
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid rgba(232, 230, 226, 0.15);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  color: rgba(250, 244, 239, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ba-card {
  background: rgba(232, 230, 226, 0.03);
  border: 1px solid rgba(232, 230, 226, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-card__half {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #111111, rgba(232, 230, 226, 0.07));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  position: relative;
}

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

.ba-card__half-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 244, 239, 0.5);
  background: rgba(10, 10, 10, 0.75);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}

.ba-card__body {
  padding: 0.875rem 1.125rem;
}

.ba-card__caption {
  font-size: 0.82rem;
  color: rgba(250, 244, 239, 0.55);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 740px;
}

.faq-item {
  border: 1px solid rgba(232, 230, 226, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item.is-open {
  border-color: rgba(232, 230, 226, 0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.5rem;
  background: rgba(232, 230, 226, 0.04);
  color: rgba(250, 244, 239, 0.88);
  font-size: 0.925rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: none;
  transition: background 200ms ease;
}

.faq-question:hover {
  background: rgba(232, 230, 226, 0.08);
}

.faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--bronze);
  transition: transform 240ms ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0.75rem 1.5rem 1.25rem;
  color: rgba(250, 244, 239, 0.6);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* Aftercare tips */
.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  padding: 1.5rem;
  background: rgba(232, 230, 226, 0.03);
  border: 1px solid rgba(232, 230, 226, 0.15);
  border-radius: 12px;
  transition: border-color 240ms ease;
}

.tip-card:hover {
  border-color: rgba(232, 230, 226, 0.3);
}

.tip-card__icon {
  width: 34px;
  height: 34px;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.tip-card__title {
  font-size: 0.975rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tip-card__text {
  font-size: 0.85rem;
  color: rgba(250, 244, 239, 0.58);
  line-height: 1.7;
}

/* Promotions */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.promo-card {
  background: linear-gradient(135deg, rgba(232, 230, 226, 0.07) 0%, rgba(232, 230, 226, 0.02) 100%);
  border: 1px solid rgba(232, 230, 226, 0.22);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--accent));
}

.promo-card__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.promo-card__title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.promo-card__desc {
  font-size: 0.875rem;
  color: rgba(250, 244, 239, 0.58);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.promo-card__fine {
  font-size: 0.75rem;
  color: rgba(250, 244, 239, 0.35);
}

.promo-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(250, 244, 239, 0.4);
  border: 1px dashed rgba(232, 230, 226, 0.2);
  border-radius: 14px;
}

.promo-empty svg {
  width: 48px;
  height: 48px;
  color: rgba(232, 230, 226, 0.2);
  margin: 0 auto 1rem;
  display: block;
}

/* Join the Team */
.jointeam-card {
  max-width: 640px;
  background: linear-gradient(135deg, rgba(232, 230, 226, 0.07) 0%, rgba(232, 230, 226, 0.02) 100%);
  border: 1px solid rgba(232, 230, 226, 0.22);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.jointeam-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--accent));
}

.jointeam-card__body {
  padding: 2.5rem;
}

.jointeam-card__intro {
  font-size: 1.1rem;
  color: rgba(250, 244, 239, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.jointeam-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.jointeam-perk {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(232, 230, 226, 0.08);
  border: 1px solid rgba(232, 230, 226, 0.2);
  border-radius: 8px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: rgba(250, 244, 239, 0.85);
  font-weight: 500;
}

.jointeam-perk svg {
  width: 16px;
  height: 16px;
  color: var(--bronze);
  flex-shrink: 0;
}

.jointeam-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jointeam-contact {
  font-size: 0.825rem;
  color: rgba(250, 244, 239, 0.4);
}

.jointeam-contact a {
  color: var(--bronze);
  text-decoration: none;
}

.jointeam-contact a:hover {
  text-decoration: underline;
}

/* Care Section (Aftercare page) */
.care-section {
  margin-bottom: 3.5rem;
}

.care-section__heading {
  margin-bottom: 1.75rem;
}

.care-section__heading h2 {
  margin: 0.25rem 0 0;
}

.care-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.care-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: rgba(232, 230, 226, 0.03);
  border: 1px solid rgba(232, 230, 226, 0.12);
  border-radius: 12px;
  transition: border-color 240ms ease;
}

.care-list__item:hover {
  border-color: rgba(232, 230, 226, 0.25);
}

.care-list__icon {
  width: 22px;
  height: 22px;
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.care-list__item p {
  margin: 0;
  font-size: 0.925rem;
  color: rgba(250, 244, 239, 0.72);
  line-height: 1.65;
}

/* Service Section (Rooms page headings) */
.service-section {
  margin: 3.5rem 0 1.5rem;
}

.service-section:first-child {
  margin-top: 0;
}

.service-section__heading {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(232, 230, 226, 0.1);
  margin-bottom: 1.75rem;
}

.service-section__heading h2 {
  margin: 0.25rem 0 0.5rem;
}

.service-section__desc {
  font-size: 0.925rem;
  color: rgba(250, 244, 239, 0.55);
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

/* Care callout banner (link to aftercare page) */
.care-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
  padding: 1.125rem 1.5rem;
  background: rgba(232, 230, 226, 0.04);
  border: 1px solid rgba(232, 230, 226, 0.18);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  transition: all 200ms ease;
}

.care-callout:hover {
  background: rgba(232, 230, 226, 0.08);
  border-color: rgba(232, 230, 226, 0.3);
}

.care-callout__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.care-callout__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.care-callout__sub {
  font-size: 0.82rem;
  color: rgba(250, 244, 239, 0.5);
}

.care-callout__arrow {
  width: 18px;
  height: 18px;
  color: var(--bronze);
  flex-shrink: 0;
}

/* Before & After Card Clickable Enhancement */
.ba-card__images--clickable {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
  transition: opacity 160ms ease;
}

.ba-card__images--clickable:hover {
  opacity: 0.85;
}

.ba-card__images--clickable:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  pointer-events: none;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-md);
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: color 160ms ease;
  border-radius: 4px;
}

.lightbox__close:hover {
  color: var(--ink);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.lightbox__image-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.lightbox__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lightbox__image-container {
  position: relative;
  background: rgba(232, 230, 226, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox__image-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox__caption {
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.lightbox__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.lightbox__nav-btn {
  background: rgba(232, 230, 226, 0.08);
  border: 1px solid rgba(232, 230, 226, 0.2);
  color: var(--muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 160ms ease;
  flex-shrink: 0;
}

.lightbox__nav-btn:hover {
  background: rgba(232, 230, 226, 0.15);
  border-color: rgba(232, 230, 226, 0.35);
  color: var(--ink);
}

.lightbox__nav-btn:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.lightbox__nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Explore page responsive */
@media (max-width: 600px) {
  .explore-page {
    padding: 2rem 1.25rem 4rem;
  }

  .lotion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-grid {
    grid-template-columns: 1fr;
  }

  .care-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .care-callout__arrow {
    display: none;
  }

  /* Lightbox responsive */
  .lightbox__content {
    max-width: 95vw;
    max-height: 95vh;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .lightbox__images {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}
