/* design tokens inlined — edit design-tokens/tokens.css then re-inline if needed */
:root {
  /* Brand gold */
  --gold-1: #E3A94F;
  --gold-2: #CE8B2F;
  --gold-3: #B0701F;
  --gradient-brand-gold: radial-gradient(120% 120% at 35% 30%, #E3A94F 0%, #CE8B2F 55%, #B0701F 100%);
  --gold-boy-1: #F8E1B1;
  --gold-boy-2: #FFCE6B;
  --gradient-boy: linear-gradient(180deg, #F8E1B1 0%, #FFCE6B 100%);
  --gold-on-light: #D6A22E;
  /* Neutrals */
  --offwhite: #FFFDF7;
  --ink: #2B2010;
  /* Night palette */
  --night-1: #0D1119;
  --night-2: #1A2230;
  --night-indigo: #3A3A6B;
  --night-silver: #B8BEC9;
  /* Blue hour palette */
  --bluehour-deep: #1B3A5C;
  --bluehour-steel: #4A6E96;
  --bluehour-teal: #2E7E80;
  --bluehour-rose: #C97B8E;
  /* Morning gold palette */
  --morning-amber: #E8A54B;
  --morning-honey: #F5C878;
  --morning-peach: #F2D9B8;
  --morning-sky: #A8C8E0;
  /* Semantic */
  --text-on-image: var(--offwhite);
  --text-on-light: var(--ink);
  --text-on-gold: var(--ink);
  --surface-page: var(--offwhite);
  --surface-night: var(--night-1);
  --cta-fill: var(--gradient-brand-gold);
  --cta-text: var(--offwhite);
  --cta-outline: var(--offwhite);
  --link: var(--gold-on-light);
  --link-hover: var(--gold-3);
  --scrim-bottom: linear-gradient(180deg, rgba(13, 17, 25, 0) 0%, rgba(13, 17, 25, .55) 100%);
  --text-shadow-soft: 0 1px 24px rgba(13, 17, 25, .45);
  /* Typography */
  --font-display: 'Abril Fatface', serif;
  --font-core: 'Outfit', sans-serif;
  --weight-body: 500;
  --weight-footnote: 300;
  --tracking-subline: .36em;
  --tracking-wide: .14em;
  --tracking-normal: .02em;
  --text-display-xl: clamp(48px, 7vw, 96px);
  --text-display: clamp(34px, 4.5vw, 56px);
  --text-headline: 28px;
  --text-body: 18px;
  --text-caption: 14px;
  --text-footnote: 12px;
  --leading-display: 1.08;
  --leading-body: 1.6;
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 160px;
  --safe-y: 10vh;
  --content-max: 680px;
  --radius-cta: 999px;
  --radius-card: 16px;
  --radius-media: 12px;
  --ease-brand: cubic-bezier(.33, 0, .2, 1);
  --duration-fade: 1200ms;
  --duration-push: 8s;
  --push-scale: 1.03;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night-1);
  font-family: var(--font-core);
  font-weight: var(--weight-body);
  color: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--morning-honey); text-decoration: none; }
a:hover { color: var(--gold-1); }

section[id] { scroll-margin-top: 104px; }

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--night-1);
}

picture.section-bg {
  display: block;
  object-fit: unset;
}

picture.section-bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-inner {
  position: relative;
}

.text-shadow-warm { text-shadow: 0 2px 28px rgba(43, 32, 16, 0.6); }
.text-shadow-cool { text-shadow: 0 2px 28px rgba(13, 17, 25, 0.6); }
.text-shadow-body-warm { text-shadow: 0 1px 22px rgba(43, 32, 16, 0.6); }
.text-shadow-body-cool { text-shadow: 0 1px 22px rgba(13, 17, 25, 0.6); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-cta);
  font-family: var(--font-core);
  font-weight: 500;
  color: var(--offwhite);
  text-decoration: none;
  background: var(--gradient-brand-gold);
  cursor: pointer;
  transition: filter 0.2s;
  letter-spacing: 0.08em;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(0.94);
  color: var(--offwhite);
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  min-width: 160px;
  min-height: 40px;
}

.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
  min-height: 56px;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--offwhite);
  border-radius: var(--radius-cta);
  color: var(--offwhite);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  background: transparent;
}

.btn-outline:hover { opacity: 0.75; color: var(--offwhite); }

.phone-frame {
  flex: 0 0 auto;
  width: 264px;
  height: 544px;
  border-radius: 40px;
  padding: 9px;
  background: linear-gradient(160deg, #F2D9B8 0%, #E3A94F 35%, #B0701F 100%);
  box-shadow: 0 0 60px rgba(227, 169, 79, 0.22);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 31px;
  display: block;
}

.quote-card {
  background: rgba(13, 17, 25, 0.5);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

@keyframes beginPush {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

@keyframes beginFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-bg { animation: beginPush 10s cubic-bezier(0.33, 0, 0.2, 1) both; }
.hero-content { animation: beginFade 1.2s cubic-bezier(0.33, 0, 0.2, 1) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .hero-content { animation: none; }
}

/* Avoid main-thread work from hero push-in on phones */
@media (max-width: 720px) {
  .hero-bg { animation: none; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--night-2);
  color: var(--offwhite);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 10px 44px;
  position: relative;
}

.banner.is-hidden { display: none; }

.banner__dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--offwhite);
  opacity: 0.6;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}

.banner__dismiss:hover { opacity: 1; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 104px;
  background: rgba(13, 17, 25, 0);
  transition: background 0.6s ease;
}

.site-header.is-scrolled .main-nav,
.site-header.is-menu-open .main-nav {
  background: rgba(13, 17, 25, 0.82);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  color: var(--offwhite);
}

.logo-lockup:hover { color: var(--offwhite); }

.logo-mark {
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.logo-mark img {
  position: absolute;
  width: 306px;
  height: 112px;
  max-width: none;
  left: -40px;
  top: -21px;
}

.logo-mark--lg {
  width: 96px;
  height: 96px;
}

.logo-mark--lg img {
  width: 432px;
  height: 158px;
  left: -57px;
  top: -30px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-text__name {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo-text__tag {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32em;
  opacity: 0.95;
}

.logo-text__name--lg { font-size: 40px; }
.logo-text__tag--lg { font-size: 17px; letter-spacing: 0.34em; gap: 8px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.nav-desktop a {
  color: var(--offwhite);
  opacity: 0.92;
}

.nav-desktop a:hover {
  opacity: 1;
  color: var(--morning-honey);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nav-actions a:not(.btn) {
  color: var(--offwhite);
  font-size: 15px;
  letter-spacing: 0.1em;
  opacity: 0.92;
}

.nav-actions a:not(.btn):hover {
  opacity: 1;
  color: var(--offwhite);
}

.nav-actions .btn {
  opacity: 1;
  flex-shrink: 0;
}

.nav-women { position: relative; }

.nav-women__trigger {
  color: var(--offwhite);
  opacity: 0.92;
  cursor: default;
}

.nav-women__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 14px;
  width: 320px;
}

.nav-women:hover .nav-women__menu { display: block; }

.nav-women__panel {
  background: var(--night-2);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-women__panel a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--offwhite);
  opacity: 1;
}

.nav-women__panel a:hover {
  background: rgba(255, 253, 247, 0.06);
  color: var(--offwhite);
}

.nav-women__title {
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-women__sub {
  display: block;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.75;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--offwhite);
  border-radius: 999px;
  color: var(--offwhite);
  font-family: var(--font-core);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 9px 20px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  background: rgba(13, 17, 25, 0.96);
  padding: 12px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel.is-open { display: flex; }

.mobile-panel a:not(.btn) {
  color: var(--offwhite);
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.08);
}

.mobile-panel__actions .btn {
  border-bottom: none;
  padding: 10px 24px;
}

.mobile-panel__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

@media (max-width: 979px) {
  .nav-desktop,
  .nav-actions { display: none; }
  .menu-toggle { display: inline-block; }
}

@media (min-width: 980px) {
  .mobile-panel { display: none !important; }
}

/* Audio player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 480px;
  margin: 48px auto 0;
}

.audio-player__btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-brand-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audio-player__btn:hover { filter: brightness(0.94); }

.audio-player__icon-play {
  width: 0;
  height: 0;
  border-left: 22px solid var(--offwhite);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

.audio-player__icon-pause {
  display: flex;
  gap: 7px;
}

.audio-player__icon-pause span {
  width: 6px;
  height: 24px;
  background: var(--offwhite);
  border-radius: 2px;
}

.audio-player__track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audio-player__bar {
  height: 4px;
  background: rgba(255, 253, 247, 0.3);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  touch-action: none;
}

.audio-player__bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  bottom: -14px;
}

.audio-player__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--morning-honey);
  border-radius: 999px;
  width: 0;
  transition: width 0.15s linear;
  pointer-events: none;
}

.audio-player__bar.is-seeking .audio-player__fill {
  transition: none;
}

.audio-player__time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.audio-player--hero {
  max-width: 560px;
  gap: 26px;
  margin: 52px auto 0;
}

.audio-player--hero .audio-player__btn {
  width: 88px;
  height: 88px;
}

.audio-player--hero .audio-player__icon-play {
  border-left-width: 26px;
  border-top-width: 16px;
  border-bottom-width: 16px;
  margin-left: 7px;
}

.audio-player--hero .audio-player__icon-pause {
  gap: 8px;
}

.audio-player--hero .audio-player__icon-pause span {
  width: 7px;
  height: 28px;
}

/* Variant B topic paper band */
.topics-band {
  position: relative;
  background: #FFF9EE;
  border-top: 1px solid rgba(206, 139, 47, 0.35);
  border-bottom: 1px solid rgba(206, 139, 47, 0.35);
  padding: 100px 24px;
  scroll-margin-top: 92px;
}

.topics-band__inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.topics-band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.2;
  margin: 0;
  color: #B0701F;
}

.topics-band__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px clamp(40px, 6vw, 88px);
  margin-top: 56px;
}

.topics-band__col {
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}

.topics-band__col h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.2;
  margin: 0;
}

.topics-band__col p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin: 0;
  color: #8A7355;
  text-wrap: pretty;
}

.topics-band__icon {
  display: flex;
  justify-content: center;
}

.topics-band__mark {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  position: relative;
}

.topics-band__mark img {
  position: absolute;
  width: 261px;
  height: 96px;
  max-width: none;
  left: -34px;
  top: -18px;
}

.topics-band__more {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.topics-band__more--stress { color: #CE8B2F; }
.topics-band__more--stress:hover { color: #B0701F; }
.topics-band__more--sleep { color: #4A6E96; }
.topics-band__more--sleep:hover { color: #1B3A5C; }
.topics-band__more--mind { color: #2E7E80; }
.topics-band__more--mind:hover { color: #1F5E60; }

.topics-band__note {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.65;
  max-width: 640px;
  margin: 56px auto 0;
  color: #A08B6B;
}

/* FAQ */
.faq-list {
  margin-top: 64px;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
}

.faq-item { border-bottom: 1px solid rgba(255, 253, 247, 0.18); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-core);
  color: var(--offwhite);
}

.faq-item__q span:first-child {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.faq-item__mark {
  font-size: 26px;
  font-weight: 300;
  color: var(--morning-honey);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item__a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  opacity: 0.88;
  margin: 0;
  padding: 0 4px 30px;
  max-width: 640px;
  display: none;
}

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

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-cols > * {
  min-width: 0;
}

@media (min-width: 800px) {
  .footer-cols {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-cols > * {
    flex: 1 1 0;
  }
}

.footer-link {
  color: var(--offwhite);
  font-size: 15px;
  font-weight: 300;
  opacity: 0.85;
}

.footer-link:hover {
  opacity: 1;
  color: var(--morning-honey);
}

.footer-social {
  color: var(--offwhite);
  opacity: 0.7;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
}

.footer-social:hover {
  opacity: 1;
  color: var(--morning-honey);
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.lang-switch__active {
  color: var(--morning-honey);
}

.lang-switch__sep {
  opacity: 0.4;
  color: var(--offwhite);
}

.lang-switch__link {
  color: var(--offwhite);
  opacity: 0.6;
}

.lang-switch__link:hover {
  opacity: 1;
  color: var(--offwhite);
}

.mobile-panel__actions .lang-switch {
  flex-shrink: 0;
}

/* Brazilian Portuguese locale */
.banner--locale-br {
  background: linear-gradient(90deg, #1A2230 0%, #2A2415 50%, #1A2230 100%);
}

.banner--locale-br a {
  color: var(--morning-honey);
  font-weight: 500;
  white-space: nowrap;
}

.locale-br .nav-desktop {
  gap: 26px;
  letter-spacing: 0.06em;
}

.locale-br .nav-actions .btn-sm {
  min-width: 150px;
}

.locale-br .btn-lg {
  min-width: 320px;
}

#faq-idioma {
  scroll-margin-top: 140px;
}

.footer-link__lang-note {
  font-size: 12px;
  opacity: 0.7;
}

@media (max-width: 1079px) {
  .locale-br .nav-desktop,
  .locale-br .nav-actions { display: none; }
  .locale-br .menu-toggle { display: inline-block; }
}

@media (min-width: 1080px) {
  .locale-br .mobile-panel { display: none !important; }
}

/* Brand film — dedicated fold between hero and Clarity */
.film {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0D1119;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.film--full {
  height: 100vh;
  aspect-ratio: auto;
}

.film__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.film__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

.film__player--portrait {
  display: none;
}

.film__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(43, 32, 16, 0.18) 0%, rgba(43, 32, 16, 0.08) 55%, rgba(43, 32, 16, 0.3) 100%);
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.film__overlay[hidden] {
  display: none !important;
}

.film__play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 35% 30%, #E3A94F 0%, #CE8B2F 55%, #B0701F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
  pointer-events: none;
}

.film__overlay:hover .film__play,
.film__overlay:focus-visible .film__play {
  filter: brightness(0.94);
}

.film__play-triangle {
  width: 0;
  height: 0;
  border-left: 26px solid #FFFDF7;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 7px;
}

.film__label {
  color: #FFFDF7;
  font-family: var(--font-core);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 22px rgba(43, 32, 16, 0.7);
  pointer-events: none;
}

.film__runtime {
  color: #FFFDF7;
  font-family: var(--font-core);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 200, 120, 0.85);
  background: rgba(13, 17, 25, 0.55);
  pointer-events: none;
  min-width: 4.8em;
  text-align: center;
}

.film__runtime:empty {
  display: none;
}

.film__chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 18px 24px 16px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 17, 25, 0) 0%, rgba(13, 17, 25, 0.72) 100%);
}

.film__chrome[hidden] {
  display: none !important;
}

.film__bar {
  height: 6px;
  background: rgba(255, 253, 247, 0.35);
  border-radius: 999px;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
}

.film__fill {
  height: 100%;
  width: 0;
  background: #F5C878;
  border-radius: 999px;
}

.film__time {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #FFFDF7;
  font-family: var(--font-core);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 12px rgba(13, 17, 25, 0.7);
}

.film__pause {
  position: absolute;
  right: 28px;
  bottom: 88px;
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 253, 247, 0.7);
  background: rgba(13, 17, 25, 0.35);
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.film__pause[hidden] {
  display: none !important;
}

.film__pause-bars {
  display: flex;
  gap: 5px;
}

.film__pause-bars span {
  width: 4px;
  height: 16px;
  background: #FFFDF7;
  border-radius: 2px;
}

@media (max-width: 720px) {
  .film:not(.film--full) {
    aspect-ratio: 9 / 16;
  }

  .film__player--landscape {
    display: none;
  }

  .film__player--portrait {
    display: block;
  }

  .film__overlay {
    gap: 18px;
  }

  .film__play {
    width: 72px;
    height: 72px;
  }

  .film__play-triangle {
    border-left-width: 22px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    margin-left: 5px;
  }

  .film__label {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .film__pause {
    right: 18px;
    bottom: 76px;
  }

  .film__chrome {
    padding: 18px 16px 16px;
  }
}

/* Review carousel (sleep / topic pages) */
.reviews-carousel__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.reviews-carousel__header {
  text-align: center;
}

.reviews-carousel__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d6a22e;
  margin: 0;
}

.reviews-carousel__rating {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 26px 0 0;
  color: #f5c878;
  text-shadow: 0 2px 28px rgba(13, 17, 25, 0.6);
}

.reviews-carousel__title {
  margin: 20px 0 0;
  line-height: 1.2;
  color: #fffdf7;
  text-shadow: 0 2px 28px rgba(13, 17, 25, 0.6);
}

.reviews-carousel--home .reviews-carousel__title {
  margin-top: 18px;
}

.reviews-carousel__stars-row {
  font-size: 17px;
  letter-spacing: 0.24em;
  color: #d6a22e;
  margin: 14px 0 0;
  line-height: 1;
}

.reviews-carousel__lede {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.82;
  margin: 18px 0 0;
  text-shadow: 0 1px 22px rgba(13, 17, 25, 0.6);
}

.reviews-carousel__widget {
  margin-top: 64px;
}

.reviews-carousel__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.reviews-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.reviews-carousel__track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.reviews-carousel__card {
  flex: 0 0 auto;
  box-sizing: border-box;
  background: rgba(26, 34, 48, 0.55);
  border: 1px solid rgba(214, 162, 46, 0.28);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
}

.reviews-carousel__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  color: #fffdf7;
}

.reviews-carousel__quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #fffdf7;
  opacity: 0.85;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}

.reviews-carousel__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-carousel__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fffdf7;
}

.reviews-carousel__stars {
  font-size: 15px;
  letter-spacing: 0.22em;
  color: #d6a22e;
  line-height: 1;
}

.reviews-carousel__country {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fffdf7;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .reviews-carousel__card {
    padding: 24px 20px;
    gap: 14px;
    min-height: 0;
  }

  .reviews-carousel__card-title {
    font-size: 18px;
  }

  .reviews-carousel__quote {
    font-size: 14px;
    line-height: 1.55;
  }

  .reviews-carousel__name,
  .reviews-carousel__stars {
    font-size: 13px;
  }
}

.reviews-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}

.reviews-carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(214, 162, 46, 0.65);
  background: none;
  color: #d6a22e;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  flex-shrink: 0;
  padding: 0;
  font-family: inherit;
}

.reviews-carousel__arrow:hover,
.reviews-carousel__arrow:focus-visible {
  opacity: 0.65;
}

.reviews-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  max-width: 340px;
}

.reviews-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(214, 162, 46, 0.3);
  transition: background 0.5s ease;
}

.reviews-carousel__dot.is-active {
  background: #d6a22e;
}

.reviews-carousel__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track {
    transition: none !important;
    will-change: auto;
  }

  .reviews-carousel__dot {
    transition: none;
  }
}
