/* =============================================================================
   Home page — stories, hero, deals, categories, why, packages, reviews.
   ========================================================================== */

/* -------------------------------------------------------------- stories -- */

/* Sits directly above the hero and shares its wash, so the top of the page
   reads as one band rather than a white strip over a tinted one. */
.ho-stories {
  padding-block: var(--ho-4) 0;
  background: var(--ho-amber-50);
}

.ho-stories__rail {
  display: flex;
  gap: var(--ho-4);
  margin: 0;
  padding: 0 0 var(--ho-2);
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  margin-inline: calc(var(--ho-gutter) * -1);
  padding-inline: var(--ho-gutter);
}
.ho-stories__rail::-webkit-scrollbar { display: none; }

.ho-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 78px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.ho-story__ring {
  display: inline-flex;
  padding: 2.5px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--ho-amber-500), var(--ho-gold), var(--ho-green-500), var(--ho-amber-500));
  transition: transform var(--ho-fast);
}
.ho-story:hover .ho-story__ring { transform: scale(1.04); }
.ho-story.is-seen .ho-story__ring { background: var(--ho-line); }

.ho-story__cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border: 2.5px solid var(--ho-bg);
  border-radius: 50%;
  background: var(--ho-cream-100);
  overflow: hidden;
}
.ho-story__cover img { width: 100%; height: 100%; object-fit: cover; }

.ho-story__title {
  max-width: 78px;
  font-size: var(--ho-fs-xs);
  font-weight: 600;
  color: var(--ho-ink-600);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Story viewer ------------------------------------------------------------ */

.ho-story-viewer {
  position: fixed;
  inset: 0;
  z-index: var(--ho-z-modal);
}
.ho-story-viewer[hidden] { display: none; }

.ho-story-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 8, .92);
  opacity: 0;
  transition: opacity var(--ho-base-t);
}
.ho-story-viewer.is-open .ho-story-viewer__backdrop { opacity: 1; }

.ho-story-viewer__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #000;
  opacity: 0;
  transform: scale(.98);
  transition: opacity var(--ho-base-t), transform var(--ho-base-t);
}
.ho-story-viewer.is-open .ho-story-viewer__stage { opacity: 1; transform: scale(1); }

/* On a wide screen the viewer becomes a centred phone-shaped panel. Centring
   uses flexbox rather than auto insets, which collapse in RTL. */
@media (min-width: 768px) {
  .ho-story-viewer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ho-story-viewer[hidden] { display: none; }

  .ho-story-viewer__stage {
    position: relative;
    inset: auto;
    width: min(440px, 92vw);
    height: min(92vh, 860px);
    border-radius: var(--ho-r-lg);
    overflow: hidden;
    box-shadow: var(--ho-shadow-lg);
  }
}

.ho-story-viewer__progress {
  position: absolute;
  inset-inline: var(--ho-2);
  top: var(--ho-2);
  z-index: 3;
  display: flex;
  gap: 4px;
}
.ho-story-viewer__track {
  flex: 1 1 0;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .3);
  overflow: hidden;
}
.ho-story-viewer__track i { display: block; height: 100%; width: 0; background: #fff; }

/* A scrim keeps the progress bar, the name and the close button readable over
   a light photo. */
.ho-story-viewer__stage::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 128px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62), transparent);
  pointer-events: none;
}

.ho-story-viewer__head {
  position: absolute;
  inset-inline: var(--ho-3);
  top: var(--ho-5);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--ho-2);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}
.ho-story-viewer__avatar {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}
.ho-story-viewer__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ho-story-viewer__name { flex: 1 1 auto; font-size: var(--ho-fs-sm); font-weight: 700; }
.ho-story-viewer__close {
  display: inline-flex;
  padding: 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  cursor: pointer;
}
.ho-story-viewer__close:hover { background: rgba(0, 0, 0, .55); }

.ho-story-viewer__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* `pan-y` lets a horizontal drag reach the swipe handler instead of being
     swallowed by the browser's own gesture handling. */
  touch-action: pan-y;
}
.ho-story-viewer__media img,
.ho-story-viewer__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ho-story-viewer__foot {
  position: absolute;
  inset-inline: var(--ho-4);
  bottom: calc(var(--ho-5) + env(safe-area-inset-bottom));
  z-index: 3;
  display: grid;
  gap: var(--ho-3);
}
.ho-story-viewer__caption {
  margin: 0;
  padding: var(--ho-3);
  border-radius: var(--ho-r-sm);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: var(--ho-fs-sm);
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(4px);
}

.ho-story-viewer__nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 34%;
  border: 0;
  background: transparent;
  cursor: pointer;
}
/* Physical sides: in a right-to-left story the next one comes from the left. */
.ho-story-viewer__nav--prev { right: 0; }
.ho-story-viewer__nav--next { left: 0; }

/* ----------------------------------------------------------------- hero -- */

.ho-hero {
  padding-block: var(--ho-8) var(--ho-6);
  background: linear-gradient(180deg, var(--ho-amber-50), var(--ho-bg) 78%);
}
@media (max-width: 767px) {
  .ho-hero { padding-top: 10px; }
  .ho-hero__text { max-width: 100%; }
}
@media (min-width: 992px) { .ho-hero { padding-block: var(--ho-12); } }

.ho-hero__inner {
  display: grid;
  gap: var(--ho-8);
  align-items: center;
}
@media (min-width: 992px) {
  .ho-hero__inner { grid-template-columns: 1.05fr .95fr; gap: var(--ho-16); }
}

.ho-hero__eyebrow { align-self: flex-start; margin-bottom: var(--ho-4); }

.ho-hero__title {
  margin: 0 0 var(--ho-4);
  font-size: clamp(21px, 5.4vw, var(--ho-fs-4xl));
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.ho-hero__text {
  max-width: 52ch;
  font-size: var(--ho-fs-md);
  color: var(--ho-ink-500);
  line-height: 2.1;
}

.ho-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ho-3);
  margin-top: var(--ho-6);
}
/* Both calls to action share one row on a phone instead of stacking into two
   full-width slabs. */
@media (max-width: 560px) {
  .ho-hero__actions { flex-wrap: nowrap; gap: var(--ho-2); }
  .ho-hero__actions .ho-btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: var(--ho-3);
    font-size: var(--ho-fs-sm);
    white-space: nowrap;
  }
  .ho-hero__actions .ho-btn .ho-icon { flex: none; }
}

.ho-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ho-3);
  margin: var(--ho-8) 0 0;
  padding-top: var(--ho-6);
  border-top: 1px solid var(--ho-line);
}
.ho-hero__stats dt { font-size: var(--ho-fs-xs); font-weight: 700; color: var(--ho-ink-600); }
.ho-hero__stats dd {
  margin: 2px 0 0;
  font-size: var(--ho-fs-xl);
  font-weight: 900;
  color: var(--ho-amber-600);
}

.ho-hero__media { position: relative; }

.ho-hero__img,
.ho-hero__art {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--ho-r-xl);
  object-fit: cover;
  box-shadow: var(--ho-shadow-lg);
}
.ho-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------- deals -- */

/* The campaign band. Dark honey base, two warm glows where the eye lands
   first (the title and the countdown), and a comb lattice over the whole
   thing so it reads as a hive panel rather than a brown rectangle. */
.ho-deals {
  position: relative;
  padding-block: var(--ho-8);
  background:
    radial-gradient(ellipse 70% 120% at 82% 0%, rgba(240, 160, 30, .38), transparent 62%),
    radial-gradient(ellipse 60% 100% at 8% 100%, rgba(196, 92, 18, .34), transparent 60%),
    linear-gradient(135deg, #2b1a0c, #4a2a0e 52%, #663a12);
  color: #fff;
  isolation: isolate;
  overflow: visible;
}

.ho-deals::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='50' viewBox='0 0 44 50'%3E%3Cpath d='M22 0l19 11v22L22 44 3 33V11z' fill='none' stroke='%23ffc766' stroke-opacity='.13' stroke-width='1.6'/%3E%3C/svg%3E");
  background-size: 44px 50px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, .35));
}

/* A thin band of honey along the top edge marks where the campaign starts. */
.ho-deals::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--ho-gold), var(--ho-amber-400), var(--ho-gold), transparent);
}

@media (min-width: 992px) {
  .ho-deals {
    margin-inline: var(--ho-gutter);
    border-radius: var(--ho-r-xl);
  }
}

.ho-deals[hidden] { display: none; }

.ho-deals__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ho-4);
  margin-bottom: var(--ho-5);
}

.ho-deals__title {
  display: flex;
  align-items: center;
  gap: var(--ho-2);
  margin: 0;
  color: #fff;
  font-size: var(--ho-fs-xl);
  font-weight: 900;
}
.ho-deals__title .ho-icon { color: var(--ho-gold); }
@media (min-width: 768px) { .ho-deals__title { font-size: var(--ho-fs-2xl); } }

.ho-deals__subtitle {
  margin: 6px 0 0;
  font-size: var(--ho-fs-sm);
  color: rgba(255, 255, 255, .95);
  font-weight: 500;
}

.ho-deals .ho-card {
  border-color: transparent;
  background: rgba(255, 255, 255, .97);
}

/* Countdown */

.ho-countdown {
  display: flex;
  align-items: center;
  gap: var(--ho-3);
  padding: 6px 12px;
  border-radius: var(--ho-r-pill);
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px);
}

.ho-countdown__label {
  font-size: var(--ho-fs-sm);
  font-weight: 800;
  color: #ffffff;
}

.ho-countdown__clock { display: flex; align-items: center; gap: 5px; }

.ho-countdown__unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
  padding: 3px 6px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}
.ho-countdown__unit b {
  font-size: var(--ho-fs-md);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--ho-ink-900);
  line-height: 1.2;
}
.ho-countdown__unit small {
  font-size: 9.5px;
  color: var(--ho-ink-500);
  font-weight: 700;
}

.ho-countdown__sep {
  color: rgba(255, 255, 255, .85);
  font-weight: 800;
  align-self: flex-start;
  padding-top: 2px;
}

/* ------------------------------------------------------------------ why -- */

.ho-why__grid {
  display: grid;
  gap: var(--ho-4);
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) { .ho-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--ho-4); } }
@media (min-width: 1024px) { .ho-why__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--ho-4); } }

/* Icon and title share the first row; the text runs full width below. */
.ho-why__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: var(--ho-3);
  padding: var(--ho-5);
  border: 1px solid var(--ho-line-soft);
  border-radius: var(--ho-r-md);
  background: var(--ho-surface);
}
.ho-why__item > .ho-why__text { grid-column: 1 / -1; margin-top: var(--ho-3); }

.ho-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--ho-r-sm);
  background: var(--ho-amber-50);
  color: var(--ho-amber-600);
}

.ho-why__title { margin: 0; font-size: var(--ho-fs-md); line-height: 1.6; }
.ho-why__text { margin: 0; font-size: var(--ho-fs-sm); color: var(--ho-ink-500); line-height: 2; }

/* --------------------------------------------------------- packs banner -- */

.ho-packs-banner {
  display: grid;
  gap: var(--ho-6);
  padding: var(--ho-8);
  border-radius: var(--ho-r-lg);
  background: linear-gradient(135deg, var(--ho-green-50), var(--ho-gold-soft));
  border: 1px solid var(--ho-line-soft);
}
@media (min-width: 900px) {
  .ho-packs-banner { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--ho-10); }
}

.ho-packs-banner__title { margin: var(--ho-3) 0; font-size: var(--ho-fs-2xl); }
.ho-packs-banner__text {
  max-width: 48ch;
  margin-bottom: var(--ho-5);
  font-size: var(--ho-fs-sm);
  color: var(--ho-ink-600);
  line-height: 2.1;
}

.ho-packs-banner__list { display: grid; gap: var(--ho-2); margin: 0; padding: 0; list-style: none; }
.ho-packs-banner__list a {
  display: flex;
  align-items: center;
  gap: var(--ho-3);
  padding: var(--ho-2);
  border-radius: var(--ho-r-md);
  background: rgba(255, 255, 255, .8);
  color: var(--ho-ink-800);
  transition: background var(--ho-fast), transform var(--ho-fast);
}
.ho-packs-banner__list a:hover { background: #fff; transform: translateX(-3px); }

.ho-packs-banner__thumb {
  flex: none;
  width: 56px; height: 56px;
  border-radius: var(--ho-r-sm);
  overflow: hidden;
  background: var(--ho-cream-100);
}
.ho-packs-banner .ho-packs-banner__thumb img { width: 100%; height: 100%; object-fit: cover; }

.ho-packs-banner__body { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }
.ho-packs-banner__body strong { font-size: var(--ho-fs-sm); font-weight: 700; }
.ho-packs-banner__body small { font-size: var(--ho-fs-xs); color: var(--ho-ink-400); }

/* -------------------------------------------------------------- reviews -- */

.ho-reviews-rail {
  display: flex;
  gap: var(--ho-3);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-block: var(--ho-2);
  margin-inline: calc(var(--ho-gutter) * -1);
  padding-inline: calc(var(--ho-gutter) + 8px);
  scroll-padding-inline: calc(var(--ho-gutter) + 8px);
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto !important;
}
@media (min-width: 1024px) {
  .ho-reviews-rail {
    margin-inline: 0;
    padding-inline: 0;
  }
}

.ho-review-card {
  flex: 0 0 82%;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--ho-3);
  margin: 0;
  padding: var(--ho-5);
  border: 1px solid var(--ho-line-soft);
  border-radius: var(--ho-r-md);
  background: var(--ho-surface);
}
@media (min-width: 700px) {
  .ho-review-card {
    flex: 0 0 42%;
    max-width: 420px;
  }
}
@media (min-width: 1024px) {
  .ho-review-card {
    flex: 0 0 30%;
    max-width: none;
  }
}

.ho-review-card__text {
  margin: 0;
  font-size: var(--ho-fs-sm);
  color: var(--ho-ink-600);
  line-height: 2.1;
}

.ho-review-card__photos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.ho-review-card__photo {
  width: 52px;
  height: 52px;
  border-radius: var(--ho-r-sm);
  overflow: hidden;
  border: 1px solid var(--ho-line-soft);
  flex: none;
  background: var(--ho-cream-100);
}
.ho-review-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ho-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: var(--ho-3);
  border-top: 1px solid var(--ho-line-soft);
  font-size: var(--ho-fs-xs);
}
.ho-review-card__meta strong { color: var(--ho-ink-800); font-size: var(--ho-fs-sm); }
.ho-review-card__meta a { color: var(--ho-ink-400); line-height: 1.5; font-weight: 500; }

/* ------------------------------------------------ free shipping progress -- */

.ho-ship-progress {
  display: grid;
  gap: 6px;
  margin-bottom: var(--ho-4);
  padding: var(--ho-3);
  border-radius: var(--ho-r-sm);
  background: var(--ho-amber-50);
}
.ho-ship-progress.is-reached { background: var(--ho-green-50); }

.ho-ship-progress__label {
  font-size: var(--ho-fs-sm);
  font-weight: 700;
  color: var(--ho-amber-700);
}
.ho-ship-progress.is-reached .ho-ship-progress__label { color: var(--ho-green-600); }

.ho-ship-progress__bar {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .07);
  overflow: hidden;
}
.ho-ship-progress__bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ho-amber-400), var(--ho-gold));
  transition: width var(--ho-base-t);
}
.ho-ship-progress.is-reached .ho-ship-progress__bar i { background: var(--ho-green-500); }

/* `.ho-blog-grid` lives in components.css: the magazine archive uses it too
   and that page loads blog.css, not this file. */

/* A countdown used on its own, outside the deals section. */

.ho-countdown-block { display: flex; justify-content: center; }
.ho-countdown-block.is-dark {
  padding: var(--ho-5);
  border-radius: var(--ho-r-lg);
  background: linear-gradient(135deg, #2b1a0c, #4a2a0e 55%, #6d3c10);
}
.ho-countdown-block:not(.is-dark) .ho-countdown {
  background: var(--ho-amber-50);
  border-color: var(--ho-amber-200);
}
.ho-countdown-block:not(.is-dark) .ho-countdown__label { color: var(--ho-ink-500); }
.ho-countdown-block:not(.is-dark) .ho-countdown__unit b { color: var(--ho-amber-600); }
.ho-countdown-block:not(.is-dark) .ho-countdown__unit small { color: var(--ho-ink-400); }
.ho-countdown-block:not(.is-dark) .ho-countdown__sep { color: var(--ho-ink-200); }

/* ------------------------------------------------------- hero video --- */

/* The video takes the image's box — same ratio, radius and shadow — and a
   cream fill so the frame does not flash white before the poster paints. */
.ho-hero__player {
  position: relative;
  border-radius: var(--ho-r-xl);
}
.ho-hero__video {
  display: block;
  background: var(--ho-cream-100);
}

/* The play button: shown whenever the video is not playing. It has to earn
   the click, so it is big, warm and alive — three waves leave it on a stagger,
   the core breathes, and the poster dims around it. With reduced motion the
   waves are replaced by a halo that only glows, so it still reads as «press
   me» without anything moving across the screen. */
.ho-hero__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--ho-4);
  padding: 0;
  border: 0;
  border-radius: inherit;
  /* Darken the poster a little around the button so it pops. */
  background: radial-gradient(circle at 50% 50%, rgba(20, 12, 4, .05) 0%, rgba(20, 12, 4, .38) 100%);
  cursor: pointer;
  transition: opacity var(--ho-base-t);
}
.ho-hero__play:focus-visible { outline: none; }
.ho-hero__play:focus-visible .ho-hero__play-core { outline: 3px solid #fff; outline-offset: 5px; }

.ho-hero__play-core {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  /* No padding nudge: the icon's own triangle is drawn optically centred.
     (A padding-inline-start nudge pushed it the wrong way on this RTL page.) */
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc94d, var(--ho-amber-500) 55%, #d9700a);
  color: #fff;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 6px rgba(245, 194, 66, .35), 0 12px 34px rgba(233, 134, 15, .55);
  animation: ho-breathe 2.4s ease-in-out infinite;
  transition: transform var(--ho-fast);
}
.ho-hero__play-core .ho-icon { position: relative; z-index: 1; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .25)); }

.ho-hero__wave {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid var(--ho-gold);
  background: radial-gradient(circle, rgba(245, 194, 66, .18), transparent 70%);
  animation: ho-wave 2.7s cubic-bezier(.2, .6, .35, 1) infinite;
  pointer-events: none;
}
.ho-hero__wave:nth-child(2) { animation-delay: .9s; }
.ho-hero__wave:nth-child(3) { animation-delay: 1.8s; }

.ho-hero__play-label {
  padding: 7px 16px;
  border-radius: var(--ho-r-pill);
  background: rgba(20, 12, 4, .6);
  color: #fff;
  font-size: var(--ho-fs-sm);
  font-weight: 800;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.ho-hero__play:hover .ho-hero__play-core { animation-play-state: paused; transform: scale(1.1); }
.ho-hero__play:hover .ho-hero__wave { animation-duration: 1.8s; }

/* Small controls in the corner, only while it plays. */
.ho-hero__video-bar {
  position: absolute;
  z-index: 2;
  top: var(--ho-3);
  inset-inline-end: var(--ho-3);
  display: flex;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ho-base-t);
}
.ho-hero__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 14, 6, .55);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.ho-hero__video-btn:hover { background: rgba(20, 14, 6, .75); }
.ho-hero__video-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.ho-hero__player.is-playing .ho-hero__play { opacity: 0; pointer-events: none; }
.ho-hero__player.is-playing .ho-hero__video-bar,
.ho-hero__player:focus-within .ho-hero__video-bar { opacity: 1; pointer-events: auto; }

/* Reduced motion: no travelling waves and no breathing — a glowing halo
   instead, which changes only in brightness. Declared with !important
   because the global reduced-motion rule clamps every animation. */
@media (prefers-reduced-motion: reduce) {
  .ho-hero__wave { display: none; }
  .ho-hero__play-core {
    animation: ho-glow 2.6s ease-in-out infinite !important;
    animation-duration: 2.6s !important;
    animation-iteration-count: infinite !important;
  }
}

/* -------------------------------------------------------- birth month banner -- */

/* -------------------------------------------------------- birth month banner -- */

.ho-birth-section {
  padding-block: var(--ho-3, 12px);
}
@media (min-width: 768px) {
  .ho-birth-section {
    padding-block: var(--ho-6);
  }
}

.ho-birth-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFF9ED 0%, #FEEBB6 45%, #FDD77B 100%);
  border: 1.5px solid #F3C623;
  box-shadow: 0 6px 20px rgba(235, 131, 23, 0.18), 0 2px 6px rgba(16, 55, 92, 0.04);
  padding: 14px 16px;
  transition: transform var(--ho-fast), box-shadow var(--ho-fast), border-color var(--ho-fast);
}

.ho-birth-banner:hover {
  transform: translateY(-2px);
  border-color: #EB8317;
  box-shadow: 0 10px 28px rgba(235, 131, 23, 0.28), 0 4px 12px rgba(16, 55, 92, 0.08);
}

@media (min-width: 768px) {
  .ho-birth-banner {
    border-radius: var(--ho-r-xl);
    padding: var(--ho-8) var(--ho-10);
  }
}

/* Subtle warm background aura */
.ho-birth-banner__warm-glow {
  position: absolute;
  top: -30px;
  inset-inline-end: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 198, 35, 0.28) 0%, rgba(235, 131, 23, 0.10) 50%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* Layout Grid - ALWAYS 2 columns side-by-side */
.ho-birth-banner__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .ho-birth-banner__grid {
    gap: var(--ho-8);
  }
}

.ho-birth-banner__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .ho-birth-banner__content {
    gap: var(--ho-3);
  }
}

/* Badge - Deep Navy background with Sun Gold text */
.ho-birth-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--ho-r-pill);
  background: #10375C;
  border: 1px solid #10375C;
  color: #F3C623;
  font-size: 11px;
  font-weight: 800;
  align-self: flex-start;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(16, 55, 92, 0.15);
}
@media (min-width: 768px) {
  .ho-birth-banner__badge {
    gap: 6px;
    padding: 5px 14px;
    font-size: 12.5px;
  }
}

/* Title - Deep Navy #10375C with Amber Orange #EB8317 highlight */
.ho-birth-banner__title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  color: #10375C;
  word-break: break-word;
}
.ho-birth-banner__highlight {
  color: #EB8317;
  font-weight: 900;
}
@media (min-width: 768px) {
  .ho-birth-banner__title {
    font-size: clamp(20px, 3.5vw, 26px);
    line-height: 1.45;
  }
}

/* Description text - Deep Navy with slight opacity */
.ho-birth-banner__text {
  margin: 0;
  font-size: 11.5px;
  color: #10375C;
  opacity: 0.85;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ho-birth-banner__text {
    font-size: var(--ho-fs-sm);
    line-height: 2.0;
    max-width: 58ch;
    display: block;
    overflow: visible;
  }
}

/* Value Perks List - hidden on mobile to keep banner sleek & compact */
.ho-birth-banner__perks {
  display: none;
}
@media (min-width: 768px) {
  .ho-birth-banner__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: var(--ho-1) 0 0;
    padding: 0;
    list-style: none;
  }
  .ho-birth-banner__perks li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #10375C;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: var(--ho-r-pill);
    border: 1.5px solid rgba(243, 198, 35, 0.45);
  }
  .ho-perk-icon {
    font-size: 13px;
  }
}

/* Actions */
.ho-birth-banner__actions {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .ho-birth-banner__actions {
    margin-top: var(--ho-3);
  }
}

/* Button - Amber Orange #EB8317 with hover Sun Gold #F3C623 and #F4F6FF text */
.ho-birth-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--ho-r-pill);
  background: #EB8317;
  color: #F4F6FF;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(235, 131, 23, 0.35);
  transition: all var(--ho-fast);
  white-space: nowrap;
}
.ho-birth-banner__btn:hover {
  transform: translateY(-2px);
  background: #F3C623;
  color: #10375C;
  box-shadow: 0 6px 18px rgba(243, 198, 35, 0.45);
}
.ho-birth-banner__btn .ho-icon {
  fill: currentColor;
  transition: transform var(--ho-fast);
}
.ho-birth-banner__btn:hover .ho-icon {
  transform: translateX(-3px);
}
@media (min-width: 768px) {
  .ho-birth-banner__btn {
    gap: 8px;
    padding: 12px 26px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(235, 131, 23, 0.32);
  }
}

/* Visual Emblem Illustration */
.ho-birth-banner__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ho-birth-banner__img-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ho-birth-banner__badge-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(16, 55, 92, 0.12));
  transition: transform var(--ho-fast);
}
.ho-birth-banner:hover .ho-birth-banner__badge-img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .ho-birth-banner__badge-img {
    width: 130px;
    height: 130px;
    filter: drop-shadow(0 10px 22px rgba(16, 55, 92, 0.14));
  }
}



