.label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  text-wrap: balance;
}

.label--light { color: rgba(250, 247, 242, 0.55); }

.heading-display {
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.heading-xl {
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.heading-lg {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
}

.text-body {
  color: var(--text-muted);
  max-width: 36rem;
  font-size: var(--text-lg);
  line-height: 1.65;
  text-wrap: pretty;
  hyphens: none;
}

.text-oneline {
  text-wrap: nowrap;
}

.text-body--light { color: rgba(250, 247, 242, 0.72); }

.text-lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: var(--text);
  text-wrap: pretty;
  hyphens: none;
}

.scene--dark .text-lead { color: rgba(250, 247, 242, 0.88); }

/* Typography — desktop: fewer awkward breaks; mobile: natural wrap */
@media (min-width: 900px) {
  .text-one-line,
  .text-phrase,
  .heading-nowrap,
  .text-oneline {
    white-space: nowrap;
  }

  .label {
    white-space: nowrap;
  }

  .text-body,
  .text-lead {
    max-width: 34rem;
  }
}

@media (max-width: 899px) {
  .heading-xl,
  .heading-lg {
    text-wrap: balance;
  }

  .br-mobile {
    display: block;
  }

  .br-desktop {
    display: none;
  }
}

@media (min-width: 900px) {
  .br-mobile {
    display: none;
  }

  .br-desktop {
    display: block;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 999px;
  transition: transform 0.45s var(--ease-cine), background 0.45s, box-shadow 0.45s;
}

.btn--primary {
  background: var(--black);
  color: var(--ivory);
  box-shadow: 0 8px 32px var(--shadow-warm);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--shadow-deep);
}

.btn--luxury {
  padding: 0.7rem 1.45rem;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--text-light);
  background: rgba(250, 247, 242, 0.1);
  border: 1px solid rgba(196, 165, 116, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 4px 20px rgba(20, 18, 16, 0.25),
    inset 0 1px 0 rgba(250, 247, 242, 0.12);
  transition:
    transform 0.55s var(--ease-cine),
    background 0.55s var(--ease-cine),
    border-color 0.55s var(--ease-cine),
    box-shadow 0.55s var(--ease-cine);
}

.btn--luxury:hover {
  transform: translateY(-1px);
  background: rgba(196, 165, 116, 0.18);
  border-color: rgba(196, 165, 116, 0.65);
  box-shadow:
    0 8px 32px rgba(196, 165, 116, 0.22),
    0 0 0 1px rgba(196, 165, 116, 0.15),
    inset 0 1px 0 rgba(250, 247, 242, 0.18);
}

.btn--luxury:active {
  transform: translateY(0);
}

.btn--luxury-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.54rem 1.52rem;
  color: rgba(248, 240, 228, 0.92);
  background: linear-gradient(
    168deg,
    rgba(255, 252, 246, 0.12) 0%,
    rgba(196, 165, 116, 0.06) 52%,
    rgba(255, 252, 246, 0.04) 100%
  );
  border: 0.5px solid rgba(196, 165, 116, 0.42);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  box-shadow:
    inset 0 0.5px 0 rgba(255, 255, 255, 0.2),
    inset 0 -0.5px 0 rgba(130, 100, 65, 0.14),
    0 4px 20px rgba(8, 6, 4, 0.22),
    0 1px 6px rgba(196, 165, 116, 0.08);
  transition:
    transform 0.85s var(--ease-cine),
    background 0.85s var(--ease-cine),
    border-color 0.85s var(--ease-cine),
    box-shadow 0.85s var(--ease-cine),
    color 0.85s var(--ease-cine);
}

.btn--luxury-hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 1px;
  left: 14%;
  right: 14%;
  height: 42%;
  border-radius: 999px 999px 45% 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
  transition: opacity 0.85s var(--ease-cine);
}

.btn--luxury-hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: 999px;
  box-shadow: inset 0 0 14px rgba(196, 165, 116, 0.06);
  pointer-events: none;
  transition: box-shadow 0.85s var(--ease-cine);
}

.btn--luxury-hero:hover {
  transform: translateY(-1px);
  color: rgba(252, 246, 236, 0.98);
  background: linear-gradient(
    168deg,
    rgba(255, 252, 246, 0.18) 0%,
    rgba(196, 165, 116, 0.1) 52%,
    rgba(255, 252, 246, 0.07) 100%
  );
  border-color: rgba(196, 165, 116, 0.58);
  box-shadow:
    inset 0 0.5px 0 rgba(255, 255, 255, 0.26),
    inset 0 0 18px rgba(196, 165, 116, 0.08),
    0 6px 24px rgba(8, 6, 4, 0.26),
    0 0 28px rgba(196, 165, 116, 0.1);
}

.btn--luxury-hero:hover::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.btn--luxury-hero:hover::after {
  box-shadow: inset 0 0 20px rgba(196, 165, 116, 0.12);
}

.btn--luxury-hero:active {
  transform: translateY(0);
  transition-duration: 0.2s;
}

.btn--ghost {
  border: 1px solid rgba(250, 247, 242, 0.45);
  color: var(--text-light);
}

.btn--ghost:hover {
  background: rgba(250, 247, 242, 0.08);
}

/* QUOTES */
.quote-block {
  text-align: center;
  max-width: min(44rem, 92vw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.quote-block__text {
  font-size: var(--text-quote);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.quote-block__line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: var(--space-4) auto 0;
}

.quote-block--dark .quote-block__text { color: var(--text-light); }

.quote-block--script .quote-block__text {
  font-style: normal;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.04em;
}

.quote-block--oneline {
  max-width: none;
  width: 100%;
  padding-inline: var(--gutter);
}

.quote-block--oneline .quote-block__text {
  white-space: nowrap;
  font-size: clamp(1.125rem, 2.8vw, var(--text-quote));
}

@media (max-width: 768px) {
  .quote-block--oneline .quote-block__text {
    white-space: normal;
    text-wrap: balance;
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (min-width: 900px) {
  .quote-block__line-text {
    white-space: nowrap;
    display: block;
  }

  .quote-block--script .quote-block__text {
    white-space: nowrap;
  }

  .quote-block--script .quote-block__line-text {
    display: inline;
  }

  .quote-block--script .quote-block__line-text + .quote-block__line-text::before {
    content: ' ';
  }
}

@media (max-width: 899px) {
  .quote-block__line-text {
    display: inline;
    white-space: normal;
  }

  .quote-block__line-text + .quote-block__line-text::before {
    content: ' ';
  }
}

/* REELS */
.reels-wrap { overflow: hidden; }

.reels-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: var(--space-2) 0 var(--space-3);
}

.reels-scroller.is-dragging { cursor: grabbing; }
.reels-scroller::-webkit-scrollbar { display: none; }

.reels-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: var(--gutter);
}

@media (min-width: 900px) {
  .reels-track {
    padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  }
}

.reel-card {
  flex-shrink: 0;
  width: clamp(11rem, 28vw, 16rem);
  scroll-snap-align: center;
}

.reel-card__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: 0 20px 60px var(--shadow-warm);
}

.reel-card__poster,
.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.reel-card__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.reel-card.is-playing .reel-card__video { opacity: 1; }
.reel-card.is-playing .reel-card__poster { opacity: 0; }

.reel-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 18, 16, 0.5) 100%);
  transition: opacity 0.4s;
}

.reel-card__play-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.92);
  box-shadow: 0 8px 32px var(--shadow-deep);
  position: relative;
}

.reel-card__play-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border: 7px solid transparent;
  border-left: 11px solid var(--black);
}

.reel-card.is-playing .reel-card__play {
  opacity: 0;
  pointer-events: none;
}

.reel-card__label {
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

.reel-card__ring {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.4);
  opacity: 0;
}

.reel-card.is-playing .reel-card__ring {
  opacity: 1;
  animation: reelRing 2s var(--ease-cine) infinite;
}

@keyframes reelRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* VOICE */
.voice-block {
  text-align: center;
  max-width: 28rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.voice-block .text-body {
  margin-inline: auto;
}

@media (min-width: 900px) {
  .voice-block {
    max-width: none;
  }

  .voice-block .text-body {
    max-width: none;
  }

  .voice-block__line {
    display: inline-block;
    max-width: none;
    white-space: nowrap;
  }
}

.voice-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-4);
  padding: 0.85rem 1.5rem 0.85rem 1rem;
  border: 1px solid rgba(250, 247, 242, 0.15);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.06);
  backdrop-filter: blur(12px);
  color: var(--text-light);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: box-shadow 0.5s, background 0.4s;
}

.voice-play.is-playing {
  box-shadow: 0 0 0 1px var(--gold-soft), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.voice-play__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}

.voice-play__icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border: 5px solid transparent;
  border-left: 8px solid var(--black);
}

.voice-play.is-playing .voice-play__icon::before {
  left: 50%;
  border: none;
  width: 3px;
  height: 11px;
  background: var(--black);
  box-shadow: 5px 0 0 var(--black);
}

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 2rem;
  margin-top: var(--space-3);
  opacity: 0.3;
  transition: opacity 0.5s;
}

.voice-wave.is-active { opacity: 0.8; }

.voice-wave__bar {
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: var(--gold);
  animation: waveBar 1.1s var(--ease-cine) infinite alternate;
}

.voice-wave__bar:nth-child(odd) { animation-duration: 0.85s; }

@keyframes waveBar {
  0% { height: 4px; opacity: 0.35; }
  100% { height: 18px; opacity: 1; }
}

/* TESTIMONIALS — editorial frames */
.review-frame {
  position: relative;
  background: var(--ivory);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(196, 165, 116, 0.45);
  box-shadow: 0 16px 48px var(--shadow-warm);
  transition: transform 0.5s var(--ease-cine), box-shadow 0.5s var(--ease-cine);
}

.review-frame::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(196, 165, 116, 0.22);
  pointer-events: none;
}

.review-frame::after {
  content: '“';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(196, 165, 116, 0.25);
  pointer-events: none;
}

.review-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px var(--shadow-deep);
}

.review-frame--accent {
  background: linear-gradient(145deg, #fffdf9 0%, var(--champagne) 100%);
}

.review-frame__source {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.review-frame__quote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.review-frame__author {
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(196, 165, 116, 0.3);
  font-size: var(--text-lg);
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
  font-size: var(--text-lg);
  font-weight: 400;
  width: 100%;
}

.contact-links a { transition: opacity 0.3s; }
.contact-links a:hover { opacity: 0.5; }
