/* ==========================================================================
   Homepage sections
   ========================================================================== */

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: var(--gradient-veil);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-xl) calc(var(--space-md) + 56px);
}

.hero__title {
  color: var(--color-white);
  font-size: var(--fs-display-xl);
  max-width: 16ch;
  text-wrap: balance;
}

.hero__subtitle {
  margin-top: var(--space-md);
  font-size: var(--fs-body-lg);
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: var(--lh-snug);
}

.hero__actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero__cta-wrap {
  position: relative;
  display: inline-flex;
}

/* Signature element: breath ring — slow inhale/exhale pulse around the primary CTA */
.breath-ring {
  position: absolute;
  inset: -14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  animation: breathe var(--duration-breath) var(--ease-breath) infinite;
}

.breath-ring--delay {
  animation-delay: calc(var(--duration-breath) / 2);
  border-color: rgba(255, 182, 117, 0.5);
}

@keyframes breathe {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breath-ring {
    animation: none;
    opacity: 0.4;
  }
}

.hero__microcopy {
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.75);
  max-width: 42ch;
}

/* ---------- Live countdown strip (overlaid on hero photo) ---------- */

.live-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  color: var(--color-white);
}

.live-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  padding-block: 0.7rem;
  font-size: var(--fs-body-sm);
  text-align: center;
}

.live-strip__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5b4d;
  flex-shrink: 0;
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-strip__dot {
    animation: none;
  }
}

.live-strip__label {
  color: rgba(255, 255, 255, 0.8);
}

.live-strip__time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--color-horizon-rose);
}

.live-strip__join {
  font-weight: 700;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.4rem;
}

/* ---------- Social proof strip ---------- */

.proof-strip {
  background: var(--color-sand);
}

.proof-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 1.5rem;
  padding-block: 1.1rem;
  text-align: center;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--color-ember-60);
}

.proof-strip__inner .dot {
  opacity: 0.5;
}

.proof-strip__rating {
  color: var(--color-marigold);
  font-weight: 700;
}

/* ---------- Quick facts ---------- */

.quick-facts {
  background: var(--color-sand);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--color-ember-12);
}

@media (min-width: 700px) {
  .quick-facts {
    padding-block: 2rem;
  }
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 700px) {
  .quick-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .quick-facts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-fact__q {
  font-weight: 700;
  font-size: var(--fs-body-sm);
  color: var(--color-marigold);
  margin-bottom: 0.35rem;
}

.quick-fact__a {
  font-size: var(--fs-body-sm);
  color: var(--color-ember-60);
  line-height: var(--lh-normal);
}

/* ---------- What it gives you ---------- */

.transform {
  background: var(--color-sand);
  padding-block: clamp(2.45rem, 5.6vw, 6.3rem);
}

.transform__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 780px) {
  .transform__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.transform-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-ember-12);
  border-left: 3px solid var(--color-marigold);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s var(--ease-breath), border-color 0.3s;
}

.transform-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--color-ember-12);
  border-left-color: var(--color-marigold);
}

.transform-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.transform-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: var(--lh-snug);
  color: var(--color-ember);
  margin-bottom: 0.5rem;
}

.transform-card__text {
  font-size: var(--fs-body-sm);
  color: var(--color-ember-60);
  line-height: var(--lh-normal);
}

.transform__cta {
  margin-top: var(--space-xl);
  text-align: center;
}

/* ---------- Symptom cards (3+4 grid) ---------- */

.transform--symptoms .container {
  max-width: 1360px;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
}

.section-head__desc {
  margin-top: 0.75rem;
  font-size: var(--fs-body-sm);
  color: var(--color-ember-60);
  line-height: var(--lh-normal);
  max-width: 560px;
  margin-inline: auto;
}

.symptom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .symptom-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .symptom-card:nth-child(-n+3) { grid-column: span 4; }
  .symptom-card:nth-child(n+4)  { grid-column: span 3; }
}

.symptom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-ember-12);
  border-radius: var(--radius-lg);
  gap: var(--space-sm);
  transition: box-shadow 0.3s var(--ease-breath), border-color 0.3s;
}

.symptom-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--color-marigold);
}

.symptom-card__illus {
  font-size: 2.25rem;
  line-height: 1;
  width: 60px;
  height: 60px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-card__text {
  font-size: var(--fs-body-sm);
  color: var(--color-ember);
  line-height: var(--lh-snug);
  flex: 1;
  margin: 0;
}

.symptom-card__btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-marigold);
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  margin-top: 0.25rem;
  transition: opacity 0.2s;
}

.symptom-card__btn:hover {
  opacity: 0.7;
}

/* -------------------------------------------- */

.transform__cta-text {
  font-family: var(--font-display);
  font-size: var(--fs-body-lg);
  color: var(--color-ember);
  margin-bottom: var(--space-md);
}

/* ---------- Offer / directions ---------- */

.directions {
  background: var(--color-mist);
  padding-top: var(--space-lg);
}

.directions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .directions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .directions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.directions__grid--secondary {
  margin-top: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .directions__grid--secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Practice rows (Утренняя/Вечерняя/Нидра — video always visible) ---------- */

.practice-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.practice-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-ember-12);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s var(--ease-breath), border-color 0.3s;
}

.practice-row:hover {
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

@media (min-width: 780px) {
  .practice-row {
    grid-template-columns: 1fr 360px;
  }
}

.practice-row__text .direction-card__schedule {
  margin-bottom: 0.75rem;
}

.practice-row__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.practice-row__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.practice-row__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.12);
  transition: background 0.25s ease;
}

.practice-row__play:hover {
  background: rgba(0, 0, 0, 0.28);
}

.practice-row__play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-dawn);
  color: var(--color-white);
  font-size: 18px;
  box-shadow: var(--shadow-soft);
}

.practice-row.is-playing .practice-row__play {
  display: none;
}

.practice-row.is-playing .practice-row__iframe {
  pointer-events: auto;
}

.direction-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-ember-12);
  transition: transform 0.3s var(--ease-breath), box-shadow 0.3s var(--ease-breath), border-color 0.3s;
}

.direction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.direction-card__schedule {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 700;
  color: var(--color-terracotta-rose);
  background: rgba(217, 106, 79, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.direction-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.direction-card__text {
  color: var(--color-ember-60);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
}

.direction-card--example {
  transition: box-shadow 0.4s var(--ease-breath), transform 0.4s var(--ease-breath);
}

.direction-card--example.is-expanded {
  grid-column: 1 / -1;
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.direction-card__preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: var(--space-sm);
  background: none;
  border: none;
  padding: 0;
  color: var(--color-marigold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body-sm);
}

.direction-card__preview-btn:active .direction-card__preview-icon {
  transform: scale(0.85);
}

.direction-card__preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-marigold);
  color: var(--color-white);
  font-size: 8px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-breath), background 0.3s ease;
}

.direction-card--example.is-expanded .direction-card__preview-icon {
  background: var(--color-ember-60);
  transform: rotate(90deg);
}

.direction-card__media {
  max-width: 640px;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.55s var(--ease-breath),
    opacity 0.4s ease,
    transform 0.45s var(--ease-breath),
    margin-top 0.55s var(--ease-breath);
}

.direction-card--example.is-expanded .direction-card__media {
  max-height: 440px;
  margin-top: var(--space-md);
  opacity: 1;
  transform: translateY(0);
}

.direction-card__media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.direction-card__media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  .direction-card--example,
  .direction-card__preview-icon,
  .direction-card__media {
    transition: none !important;
  }
}

.directions__cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.directions__price-hint {
  margin-top: var(--space-sm);
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--color-ember-60);
}

.directions__price-hint a {
  color: var(--color-marigold);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Expert spotlight ---------- */

.spotlight {
  background: var(--color-sand);
}

.spotlight__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 860px) {
  .spotlight__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.spotlight__portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}

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

.spotlight__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.spotlight__stat {
  display: flex;
  flex-direction: column;
}

.spotlight__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-marigold);
  line-height: var(--lh-tight);
}

.spotlight__stat-label {
  font-size: var(--fs-caption);
  color: var(--color-ember-60);
  line-height: var(--lh-snug);
  max-width: 12ch;
}

.spotlight__title {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  line-height: var(--lh-snug);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.spotlight__credential {
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--color-terracotta-rose);
}

.spotlight__divider {
  width: 48px;
  height: 2px;
  background: var(--color-marigold);
  margin-block: var(--space-md);
}

.spotlight__bio {
  color: var(--color-ember-60);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.spotlight__bio strong {
  color: var(--color-ember);
}

.spotlight__bio p {
  margin-bottom: var(--space-sm);
}

.spotlight__bio p:last-child {
  margin-bottom: 0;
}

.spotlight__more-toggle {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 700;
  color: var(--color-marigold);
  text-decoration: underline;
  cursor: pointer;
}

.spotlight__more-toggle:hover {
  color: var(--color-terracotta-rose);
}

.spotlight__more-toggle[hidden] {
  display: none;
}

.spotlight__cta {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--fs-body-sm);
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--color-mist);
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--section-pad-x);
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--section-pad-x) * -1);
  padding-inline: var(--section-pad-x);
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 780px) {
  .testimonials__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }
}

.testimonial-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-ember-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 0 0 85%;
  scroll-snap-align: start;
}

@media (min-width: 780px) {
  .testimonial-card {
    flex: initial;
  }
}

.testimonial-card__hook {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: var(--lh-snug);
}

.testimonial-card__body {
  color: var(--color-ember-60);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
}

.testimonial-card__author {
  margin-top: auto;
  padding-top: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-caption);
  font-weight: 700;
  color: var(--color-ember);
}

.testimonial-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-dawn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--color-sand);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-ember-12);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 1.3rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body-lg);
  color: var(--color-ember);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-marigold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 16px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 16px;
  transition: transform 0.25s var(--ease-breath);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-breath);
}

.faq-item__a-inner {
  padding-bottom: 1.3rem;
  color: var(--color-ember-60);
  line-height: var(--lh-normal);
}

.faq-item__a-inner ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.faq-item__a-inner li {
  margin-bottom: 0.3rem;
}

.faq-item__a-inner b {
  color: var(--color-ember);
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 33, 28, 0.55) 0%, rgba(42, 33, 28, 0.82) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.final-cta__title {
  color: var(--color-white);
}

.final-cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body-lg);
}

/* ---------- About Club ---------- */

.about-club {
  background: var(--color-sand);
}

.about-club__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-club__text .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.about-club__text h2 {
  margin-bottom: 1.5rem;
}

.about-club__text p {
  margin-bottom: 1rem;
  color: var(--color-ember-60);
  line-height: var(--lh-normal);
  max-width: 54ch;
}

.about-club__accent {
  font-weight: 700 !important;
  color: var(--color-ember) !important;
  font-size: 1.1em;
  margin-bottom: 2rem !important;
}

.about-club__text .btn {
  margin-top: 0.5rem;
}

.about-club__video-slot {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-ember);
  aspect-ratio: 16 / 10;
  position: relative;
  box-shadow: var(--shadow-lift);
  /* fade in when section enters viewport */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-breath), transform 0.5s var(--ease-breath);
}

.about-club__video-slot.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-club__video-slot iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Play-with-sound overlay for States 1 & 2 */
.about-club__play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(42, 33, 28, 0.38);
  border: none;
  cursor: pointer;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.about-club__play-overlay:hover {
  background: rgba(42, 33, 28, 0.54);
}

.about-club__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-dawn);
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(231, 118, 17, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-club__play-overlay:hover .about-club__play-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(231, 118, 17, 0.6);
}

@media (max-width: 900px) {
  .about-club__inner {
    grid-template-columns: 1fr;
  }

  .about-club__video-slot {
    width: 100%;
  }
}

/* ---------- Books Promo ---------- */

.books-promo {
  background: var(--color-mist);
  text-align: center;
}

.books-promo .section-head {
  margin-bottom: var(--space-xl);
}

.books-promo__visual {
  max-width: 720px;
  margin-inline: auto;
}

.books-promo__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.books-promo__cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.books-promo__note {
  font-size: var(--fs-body-sm);
  color: var(--color-ember-60);
  margin: 0;
}

/* ---------- Compact hero on short viewports (fit hero + live-strip + proof-strip above the fold) ---------- */

@media (max-height: 820px) and (min-width: 601px) {
  .hero {
    min-height: 48vh;
    padding-block: 1.5rem 0.5rem;
  }

  .hero__content {
    padding-block: 1.5rem calc(var(--space-md) + 52px);
  }

  .hero__title {
    font-size: clamp(1.6rem, 3vw + 0.7rem, 2.75rem);
  }

  .hero__subtitle {
    font-size: 0.9rem;
    margin-top: 0.6rem;
  }

  .hero__actions {
    margin-top: 1rem;
    gap: 0.4rem;
  }

  .hero__microcopy {
    font-size: 0.72rem;
  }
}