:root {
  --pine: #09110c;
  --pine-2: #122018;
  --pine-3: #1d3226;
  --ivory: #f6f1e7;
  --ivory-dim: rgba(246, 241, 231, 0.72);
  --stone: #a9a093;
  --gold: #c89a58;
  --gold-2: #e0c083;
  --gold-deep: #b88b4a;
  --line: rgba(224, 192, 131, 0.18);
  --card: rgba(17, 28, 21, 0.86);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.32s;
  --duration-reveal: 0.45s;
  --duration-slow: 0.9s;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(200, 154, 88, 0.16), transparent 32rem),
    linear-gradient(180deg, #07100b 0%, #101c14 44%, #0a110c 100%);
  color: var(--ivory);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Shared keyboard focus — premium gold ring */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}
/* Hero search: one outer border via .search-field:focus-within — no inner ring */
.search-field input:focus,
.search-field input:focus-visible,
.search-field__icon:focus,
.search-field__icon:focus-visible {
  outline: none;
}
.chip:focus-visible,
.btn:focus-visible,
.species-card:focus-visible,
.visitor-mode__option:focus-visible,
.track-arrow:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

/* ---- Atmospheric texture (matches original hero-noise approach) ---- */
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* ---- Scroll reveal baseline ---- */
.no-js [data-reveal],
.no-js [data-reveal-stagger] > * {
  opacity: 1;
  transform: none;
}

[data-reveal],
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible,
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal="delay"].is-visible {
  transition-delay: 0.12s;
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.04s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.22s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.34s; }
[data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 0.4s; }
[data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 0.46s; }

/* ---- Gold corner ornaments (reused from original estate cards) ---- */
.corner {
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  pointer-events: none;
  z-index: 3;
  background-image: url("assets/ui/gold-corner.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.38;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.corner--tl { top: 0; left: 0; }
.corner--br { bottom: 0; right: 0; transform: rotate(180deg); }
.corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }

.lux-panel:hover .corner,
.provider-cta:hover .corner,
.experience-card:hover .corner {
  opacity: 0.58;
}

/* ---- Section bridges & ornaments ---- */
.section-bridge {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem 0 0.5rem;
}

.section-bridge--dark {
  background:
    linear-gradient(180deg, rgba(5, 10, 7, 0.92) 0%, #0b130e 100%);
}

.section-bridge--pre-catalog {
  padding: clamp(1.35rem, 3vw, 2.25rem) 0 clamp(0.65rem, 1.5vw, 1rem);
  background: linear-gradient(180deg, #0b130e 0%, #101c14 100%);
}

.section-bridge--pre-catalog .gold-line {
  opacity: 0.48;
}

.section-bridge--pre-catalog .section-ornament {
  margin-top: 0.95rem;
}

.section-bridge--pre-catalog + .section--species {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
}

.section-bridge--to-light {
  padding: 0.9rem 0 0.4rem;
  background: linear-gradient(180deg, #101c14 0%, #0d1610 100%);
}

.section-bridge--to-dark {
  padding: 0.4rem 0 0.9rem;
  background: linear-gradient(180deg, #0d1610 0%, #0b130e 100%);
}

/* Experiences corridor: slim bridges + feathered cream (not a full-bleed stripe) */
.section--offers + .section-bridge--to-light {
  padding: 0.75rem 0 0.25rem;
}

.section--offers + .section-bridge--to-light .gold-line {
  opacity: 0.7;
}

.section--experiences + .section-bridge--to-dark {
  padding: 0.25rem 0 0.75rem;
}

.section--experiences + .section-bridge--to-dark .section-ornament {
  margin-top: 0.65rem;
}

.section--experiences + .section-bridge--to-dark .section-ornament img {
  width: min(14rem, 44vw);
  opacity: 0.72;
}

.gold-line {
  display: block;
  width: min(420px, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: 0.55;
}

.section-ornament {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.section-ornament img {
  width: min(18rem, 52vw);
  opacity: 0.82;
  filter: drop-shadow(0 0 12px rgba(184, 139, 74, 0.12));
}

/* ---- Visitor audience mode selector ---- */
/* Solo-only trial: hide switcher, keep solo catalogue (remove body.homepage-solo-only to restore) */
body.homepage-solo-only .visitor-mode {
  display: none !important;
}

.visitor-mode {
  position: relative;
  z-index: 2;
  max-width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.2rem, 4vw, 4rem) clamp(0.85rem, 2vw, 1.15rem);
  text-align: center;
}

.visitor-mode__prompt {
  display: none;
}

.visitor-mode__toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 172, 102, 0.22);
  background: rgba(8, 16, 11, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 235, 195, 0.04);
}

.visitor-mode__option {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(241, 234, 223, 0.72);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.visitor-mode__option.is-active {
  color: #1a1208;
  background: linear-gradient(135deg, #e8c98e 0%, #c89a58 48%, #e6c17d 100%);
  box-shadow: 0 4px 18px rgba(184, 139, 74, 0.22);
}

.visitor-mode__hint {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(224, 192, 131, 0.62);
  transition: opacity var(--duration-fast) var(--ease-out);
}

body.homepage-mode-group .visitor-mode__hint,
body.homepage-mode-solo .visitor-mode__hint {
  opacity: 1;
}

body.homepage-mode-group #species[data-mode-section="solo"] {
  display: none;
}

body.homepage-mode-solo #species[data-mode-section="solo"] {
  display: block;
}

/* #group-dates: join-existing groups — Solo only (before Available hunting dates) */
body.homepage-mode-group .section--group-dates {
  display: none !important;
}

body.homepage-mode-solo .section--group-dates:not([hidden]) {
  display: block !important;
}

body.homepage-mode-group .visitor-mode {
  padding-bottom: clamp(0.65rem, 1.5vw, 1rem);
}

body.homepage-mode-group .visitor-mode__hint {
  max-width: 38rem;
  font-size: 0.98rem;
  color: rgba(232, 201, 142, 0.78);
}

/* ---- Group marketplace summary (group mode only) ---- */
.group-marketplace-slot {
  max-width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 4rem);
}

.group-marketplace-slot[hidden] {
  display: none;
}

.group-marketplace {
  margin: 0 auto clamp(0.85rem, 2vw, 1.35rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(214, 172, 102, 0.14);
  border-radius: 1px;
  background:
    linear-gradient(135deg, rgba(200, 154, 88, 0.06) 0%, transparent 42%),
    rgba(8, 16, 11, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 195, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.18);
}

.group-marketplace__header {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.group-marketplace__kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 201, 142, 0.88);
}

.group-marketplace__tagline {
  margin: 0.55rem auto 0;
  max-width: 32rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(224, 192, 131, 0.58);
}

.group-marketplace__metrics {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(214, 172, 102, 0.1);
  border-bottom: 1px solid rgba(214, 172, 102, 0.1);
}

.group-marketplace__metric {
  flex: 1 1 9rem;
  text-align: center;
  padding: 0.35rem 0.75rem;
}

.group-marketplace__value {
  display: block;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
  color: rgba(248, 241, 228, 0.95);
}

.group-marketplace__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: rgba(224, 192, 131, 0.62);
}

.group-marketplace__ornament {
  flex: 0 0 1px;
  align-self: stretch;
  width: 1px;
  min-height: 2.5rem;
  margin: 0.25rem 0;
  background: linear-gradient(180deg, transparent, rgba(214, 172, 102, 0.32), transparent);
}

.group-marketplace__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1rem;
  padding-top: 0.15rem;
}

.group-marketplace__signal,
.group-marketplace__departure {
  text-align: center;
}

.group-marketplace__signal[hidden],
.group-marketplace__departure[hidden] {
  display: none;
}

.group-marketplace__signal-label,
.group-marketplace__departure-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 192, 131, 0.52);
}

.group-marketplace__signal strong,
.group-marketplace__departure-date {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: rgba(232, 201, 142, 0.92);
}

body.homepage-mode-group .section--popular {
  padding-top: clamp(1rem, 2.5vw, 2rem);
}

body.homepage-mode-group .section--popular .section-head {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

body.homepage-mode-group [data-featured-head] h2 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  letter-spacing: 0.01em;
}

body.homepage-mode-group [data-featured-eyebrow] {
  color: rgba(232, 201, 142, 0.82);
  letter-spacing: 0.16em;
}

body.homepage-mode-group [data-featured-lead] {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(224, 192, 131, 0.68);
}

body.homepage-mode-group .offer-track[data-featured-track] > .offer-card--group-event {
  min-width: min(100%, 19rem);
  max-width: 21rem;
}

/* ---- Catalog loading ---- */
body.homepage-catalog-loading #popular {
  opacity: 0.42;
  pointer-events: none;
}

#popular.is-catalog-ready {
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--duration-reveal) var(--ease-out);
}

/* ---- Marketplace enter ---- */
.group-marketplace-slot.is-entering .group-marketplace {
  animation: marketplace-enter var(--duration-reveal) var(--ease-out) both;
}

@keyframes marketplace-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.group-marketplace--empty .group-marketplace__header {
  margin-bottom: 0.5rem;
}

.group-marketplace__empty {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
  width: 100%;
}

.group-marketplace__empty[hidden] {
  display: none;
}

.group-marketplace__empty-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: rgba(248, 241, 228, 0.9);
}

.group-marketplace__empty-lead {
  margin: 0.5rem auto 0;
  max-width: 26rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(224, 192, 131, 0.58);
}

.group-marketplace__footer-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  width: 100%;
}

.group-marketplace__footer-stats[hidden] {
  display: none;
}

/* ---- Featured empty states ---- */
.featured-empty {
  flex: 0 0 min(100%, 22rem);
  min-width: min(100%, 18rem);
  max-width: 24rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  border: 1px solid rgba(214, 172, 102, 0.16);
  background:
    linear-gradient(145deg, rgba(248, 241, 228, 0.97) 0%, rgba(241, 234, 223, 0.94) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.featured-empty__ornament {
  width: 3.5rem;
  height: 1px;
  margin: 0 auto 1.15rem;
  background: linear-gradient(90deg, transparent, rgba(184, 139, 74, 0.55), transparent);
}

.featured-empty__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 500;
  line-height: 1.25;
  color: #1a1208;
}

.featured-empty__lead {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(23, 36, 28, 0.58);
}

.featured-empty__link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(140, 104, 58, 0.95);
  border-bottom: 1px solid rgba(184, 139, 74, 0.35);
  padding-bottom: 0.15rem;
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.featured-empty__link:hover {
  color: #1a1208;
  border-color: rgba(184, 139, 74, 0.65);
}

.offer-track-wrap.has-empty-state .track-arrow {
  opacity: 0.25;
  pointer-events: none;
}

#popular.is-transitioning,
[data-featured-head].is-transitioning,
[data-featured-track].is-transitioning {
  opacity: 0.35;
  transform: translateY(8px);
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

/* ---- Group event cards ---- */
.offer-card--group-event {
  display: flex;
  flex-direction: column;
  border-color: rgba(214, 172, 102, 0.22);
}

.group-event__mast {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 0.65rem;
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(241, 234, 223, 0.94) 100%);
  border-bottom: 1px solid rgba(214, 172, 102, 0.18);
}

.group-event__date {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.group-event__date-primary {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
  color: #1a1208;
  letter-spacing: 0.02em;
}

.group-event__date-secondary {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.52);
}

.group-event__mast .group-status-pill {
  position: static;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.offer-card__image--group-event {
  aspect-ratio: 16 / 9;
}

.offer-card__image--group-event img {
  object-position: center 35%;
}

.offer-card__body--group-event {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.05rem 1.1rem;
}

.offer-card--group-event h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.group-event__venue {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 36, 28, 0.5);
}

.group-event__season {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: rgba(23, 36, 28, 0.72);
}

.group-event__season span {
  display: inline-block;
  margin-right: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(23, 36, 28, 0.45);
}

.group-event__dates {
  margin: 0 0 0.85rem;
}

.group-event__dates-label,
.offer-card__active-dates-label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(23, 36, 28, 0.45);
}

.offer-card__active-dates-label {
  color: var(--stone);
}

.group-event__dates-list,
.offer-card__active-dates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.group-event__dates-list li,
.offer-card__active-dates-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  font-size: 0.86rem;
}

.group-event__dates-list li {
  color: rgba(23, 36, 28, 0.88);
}

.offer-card__active-dates-list li {
  color: var(--ivory);
}

.group-event__dates-list span,
.offer-card__active-date-places {
  font-size: 0.78rem;
  color: #8a6230;
}

.offer-card__active-date-places {
  color: #f2d49b;
}

.offer-card__active-dates {
  margin: 0.75rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(224, 192, 131, 0.14);
}

.group-event__party {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: rgba(23, 36, 28, 0.62);
}

.group-event__party strong {
  color: rgba(23, 36, 28, 0.88);
}

.group-event__progress-block {
  margin-bottom: 0.95rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(214, 172, 102, 0.16);
}

.group-event__progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.group-event__progress-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 36, 28, 0.48);
}

.group-event__progress-pct {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(140, 104, 58, 0.88);
}

.group-event__progress {
  margin-bottom: 0.45rem;
}

.group-event__progress-track {
  display: block;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(23, 36, 28, 0.07);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(23, 36, 28, 0.04);
}

.group-event__progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(154, 114, 64, 0.5) 0%, rgba(200, 154, 88, 0.88) 55%, rgba(232, 201, 142, 0.75) 100%);
  box-shadow: 0 0 8px rgba(200, 154, 88, 0.15);
  transition: width 0.5s var(--ease-out, ease);
}

.group-event__progress-caption {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(23, 36, 28, 0.55);
}

.group-event__places {
  color: rgba(23, 36, 28, 0.82);
  font-weight: 600;
}

.offer-card__cta--event {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 0.82rem 1rem;
  opacity: 1;
  transform: none;
  border: 1px solid rgba(184, 139, 74, 0.35);
  background: linear-gradient(180deg, rgba(18, 45, 31, 0.96), rgba(14, 30, 22, 0.98));
  color: var(--gold-2);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.offer-card__cta--event:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 172, 102, 0.55);
  box-shadow: 0 8px 24px rgba(184, 139, 74, 0.18);
  color: #f8f1e4;
}

.group-event__closed {
  display: block;
  margin-top: auto;
  padding: 0.65rem 0.5rem;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(23, 36, 28, 0.48);
  font-style: italic;
}

.group-event__price {
  margin: 0.55rem 0 0;
  font-size: 0.74rem;
  text-align: center;
  color: rgba(23, 36, 28, 0.42);
}

.group-event__price strong {
  font-weight: 500;
  color: rgba(23, 36, 28, 0.55);
}

.group-status-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(214, 172, 102, 0.28);
  background: rgba(8, 16, 11, 0.72);
  color: rgba(241, 234, 223, 0.88);
  backdrop-filter: blur(4px);
}

.group-status-pill--recruiting,
.group-status-pill--open {
  border-color: rgba(124, 154, 106, 0.42);
  color: rgba(184, 212, 170, 0.95);
}

.group-status-pill--nearly_full,
.group-status-pill--filling {
  border-color: rgba(200, 154, 88, 0.45);
  color: rgba(232, 201, 142, 0.95);
}

.group-status-pill--full,
.group-status-pill--closed,
.group-status-pill--completed {
  color: rgba(241, 234, 223, 0.65);
  border-color: rgba(214, 172, 102, 0.18);
}

.group-status-pill--cancelled {
  border-color: rgba(122, 48, 48, 0.55);
  color: rgba(248, 220, 210, 0.94);
}

.group-event__code {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 154, 88, 0.88);
}

.group-event__dates-inline {
  margin: 0.25rem 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(23, 36, 28, 0.62);
}

.group-event__stats {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.group-event__stats li {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 36, 28, 0.58);
}

.group-event__stats strong {
  color: rgba(23, 36, 28, 0.82);
  font-weight: 600;
}

.group-event__host {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 36, 28, 0.52);
}

.group-event__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.offer-card--group-identity .offer-card__cta--view {
  border-color: rgba(200, 154, 88, 0.35);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(23, 36, 28, 0.78);
}

.offer-card--group-identity .offer-card__cta--join {
  flex: 1 1 auto;
}

@media (max-width: 720px) {
  .group-marketplace__metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.75rem 0;
  }

  .group-marketplace__ornament {
    display: none;
  }

  .group-marketplace__metric {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(214, 172, 102, 0.08);
  }

  .group-marketplace__metric:last-child {
    border-bottom: 0;
  }

  .group-marketplace__footer {
    flex-direction: column;
    gap: 0.85rem;
  }
}

@media (max-width: 768px) {
  .visitor-mode__toggle {
    width: min(100%, 22rem);
  }

  .visitor-mode__option {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.68rem 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  body.homepage-mode-group .offer-track[data-featured-track] > .offer-card--group-event {
    min-width: min(85vw, 18.5rem);
    max-width: 19.5rem;
  }

  .group-marketplace__value {
    font-size: 1.65rem;
  }
}

@media (max-width: 430px) {
  .visitor-mode {
    padding-inline: 1rem;
  }

  .visitor-mode__hint {
    font-size: 0.88rem;
  }

  .group-marketplace-slot {
    padding-inline: 1rem;
  }

  .group-marketplace {
    padding: 1rem 0.85rem;
  }

  .group-event__mast {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .group-event__date-primary {
    font-size: 1.45rem;
  }

  .group-status-pill {
    font-size: 0.58rem;
    padding: 0.3rem 0.5rem;
  }

  .offer-card__body--group-event {
    padding: 0.85rem 0.85rem 1rem;
  }

  .offer-card__cta--event {
    padding: 0.75rem 0.85rem;
    font-size: 0.68rem;
  }

  .featured-empty {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .offer-track-wrap {
    gap: 0.35rem;
  }
}

.offer-card__cta--join {
  opacity: 1;
  transform: none;
}

.offer-card__price--muted {
  font-size: 0.82rem;
  color: rgba(23, 36, 28, 0.55);
}

/* Decorative ornaments frame sections inside the gold border, clear of content. */
.section--framed {
  position: relative;
  overflow-x: clip;
}

.lux-frame__ornament {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: clamp(6.5rem, 11vw, 10.5rem);
  opacity: 0.46;
  filter: drop-shadow(0 0 10px rgba(184, 139, 74, 0.12));
}

.lux-frame__ornament--tr {
  top: clamp(0.6rem, 1.2vw, 1.1rem);
  right: clamp(0.8rem, 1.6vw, 1.4rem);
  left: unset;
  bottom: unset;
  transform: rotate(-4deg);
}

.lux-frame__ornament--bl {
  bottom: clamp(0.6rem, 1.2vw, 1.1rem);
  left: clamp(0.8rem, 1.6vw, 1.4rem);
  transform: rotate(176deg);
  opacity: 0.4;
}

.lux-frame--dark .section-head,
.lux-frame--dark .offer-toolbar {
  padding-right: clamp(3rem, 8vw, 7rem);
}

.lux-frame--dark .offer-grid {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.lux-frame--light .section-head {
  padding-right: clamp(2.5rem, 7vw, 6rem);
}

.lux-frame--light .experience-row {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

/* ---- Premium gold frame (inspired by original Featured Hunts) ---- */
.lux-frame {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3.4rem);
  padding-bottom: clamp(2.8rem, 4vw, 4rem);
  overflow: hidden;
}

.lux-frame--dark {
  background:
    linear-gradient(135deg, rgba(255, 235, 195, 0.08) 0%, rgba(214, 172, 102, 0.22) 18%, rgba(143, 105, 48, 0.12) 50%, rgba(222, 186, 118, 0.18) 82%, rgba(255, 230, 185, 0.06) 100%);
  border: 1px solid rgba(214, 172, 102, 0.14);
  box-shadow: 0 0 0 1px rgba(214, 172, 102, 0.06), 0 8px 34px rgba(120, 88, 42, 0.08);
}

.lux-frame--dark::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(11, 19, 14, 0.94);
  z-index: 0;
}

.lux-frame--light {
  background:
    linear-gradient(135deg, rgba(255, 235, 195, 0.35) 0%, rgba(214, 172, 102, 0.92) 18%, rgba(143, 105, 48, 0.45) 50%, rgba(222, 186, 118, 0.88) 82%, rgba(255, 230, 185, 0.22) 100%);
  border: 1px solid rgba(184, 139, 74, 0.22);
  box-shadow:
    0 0 0 1px rgba(184, 139, 74, 0.08),
    0 6px 28px rgba(89, 62, 28, 0.06);
}

.lux-frame--light::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #f3eee5;
  z-index: 0;
}

.lux-frame > *:not(.lux-frame__ornament) {
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 1.15rem clamp(1.2rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header__start {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 3rem);
  min-width: 0;
  flex: 1 1 auto;
}

.main-nav--primary {
  flex-wrap: wrap;
}

.main-nav--auth {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: clamp(0.75rem, 1.5vw, 1.5rem);
  border-left: 1px solid rgba(224, 192, 131, 0.12);
}

.main-nav a.main-nav__auth-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(200, 154, 88, 0.38);
  background: rgba(200, 154, 88, 0.08);
  color: rgba(232, 204, 150, 0.95);
  border-radius: 2px;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.main-nav a.main-nav__auth-btn::after {
  display: none;
}

.main-nav a.main-nav__auth-btn:hover {
  color: #f8ecd8;
  background: rgba(200, 154, 88, 0.2);
  border-color: rgba(224, 192, 131, 0.72);
}

.main-nav a.main-nav__auth-btn--hunter {
  border-color: rgba(176, 141, 79, 0.42);
}

.main-nav a.main-nav__auth-btn--provider {
  border-color: rgba(200, 154, 88, 0.52);
  background: rgba(200, 154, 88, 0.1);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 16, 11, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(10rem, 17vw, 17rem);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}

.main-nav a:hover {
  color: var(--gold-2);
}

.main-nav a.main-nav__provider-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  margin-left: 0.1rem;
  border: 1px solid rgba(200, 154, 88, 0.52);
  background: rgba(200, 154, 88, 0.1);
  color: rgba(232, 204, 150, 0.95);
  border-radius: 2px;
  letter-spacing: 0.16em;
  transition:
    color 0.25s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.main-nav a.main-nav__provider-btn::after {
  display: none;
}

.main-nav a.main-nav__provider-btn:hover {
  color: #f8ecd8;
  background: rgba(200, 154, 88, 0.24);
  border-color: rgba(224, 192, 131, 0.78);
  box-shadow: 0 0 18px rgba(200, 154, 88, 0.16);
}

.main-nav a.main-nav__last-minute {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  margin: -0.38rem 0;
  border: 1px solid rgba(122, 48, 48, 0.55);
  background: rgba(72, 22, 22, 0.42);
  color: rgba(248, 220, 210, 0.94);
  border-radius: 999px;
  letter-spacing: 0.14em;
  transition:
    color 0.25s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.main-nav a.main-nav__last-minute::after {
  display: none;
}

.main-nav a.main-nav__last-minute:hover {
  color: #faece8;
  background: rgba(92, 28, 28, 0.55);
  border-color: rgba(148, 52, 52, 0.72);
  box-shadow: 0 0 14px rgba(100, 28, 28, 0.28);
}

.main-nav__last-minute-count::before {
  content: "•";
  margin-right: 0.35rem;
  opacity: 0.7;
}

@media (prefers-reduced-motion: no-preference) {
  .main-nav a.main-nav__last-minute {
    animation: nav-last-minute-pulse 5s ease-in-out infinite;
  }
}

@keyframes nav-last-minute-pulse {
  0%, 86%, 100% {
    box-shadow: 0 0 0 rgba(100, 28, 28, 0);
  }
  92% {
    box-shadow: 0 0 14px rgba(100, 28, 28, 0.32);
  }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  padding: 0.7rem 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(7.5rem, 12vw, 10rem) clamp(1.2rem, 4vw, 4rem) clamp(3rem, 7vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  background: #1c2e24;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.92) contrast(1.1) brightness(0.82);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.1) brightness(0.82);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero--media-ready:not(.hero--has-video) .hero__image:not([hidden]),
.hero--media-ready.hero--has-video .hero__video {
  opacity: 1;
}

html.no-js .hero__image[src] {
  opacity: 1;
}

html.hero-expect-video .hero__image {
  display: none !important;
}

.hero__media--video .hero__image,
.hero--has-video .hero__image {
  display: none;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 7, 0.84) 0%, rgba(8, 16, 11, 0.58) 42%, rgba(5, 10, 7, 0.22) 68%, rgba(5, 10, 7, 0.12) 100%),
    radial-gradient(circle at 70% 35%, rgba(200, 154, 88, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(5, 10, 7, 0.2) 0%, rgba(5, 10, 7, 0.55) 100%);
}

.hero__grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 34rem);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__trust-eyebrow {
  margin: 0;
  color: var(--gold-2);
  font-size: clamp(0.76rem, 1.15vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.45;
  max-width: 28rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.hero__trust-sep {
  color: rgba(200, 154, 88, 0.72);
  padding-inline: 0.2em;
  letter-spacing: 0;
}

.hero__copy--stagger > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: hero-enter var(--duration-reveal) var(--ease-out) forwards;
}

.hero__copy--stagger .hero__trust-eyebrow { animation-delay: 0.06s; }
.hero__copy--stagger h1 { animation-delay: 0.14s; }
.hero__copy--stagger .hero__lead { animation-delay: 0.22s; }
.hero__copy--stagger .hero__actions { animation-delay: 0.3s; }
.hero__copy--stagger .hero__trust-stats { animation-delay: 0.38s; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.provider-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 14ch;
  margin-top: 1.15rem;
  font-size: clamp(3.2rem, 7.5vw, 7.4rem);
  line-height: 0.86;
}

@media (min-width: 821px) {
  .hero h1 {
    max-width: 18ch;
    font-size: clamp(2.95rem, 5.6vw, 6.8rem);
  }
}

.hero__lead,
.hero p {
  max-width: 40rem;
  margin: 1.35rem 0 0;
  color: rgba(246, 241, 231, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.hero__trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin: 2.25rem 0 0;
  padding: 1.65rem 0 0;
  border-top: 1px solid rgba(214, 172, 102, 0.2);
  list-style: none;
  max-width: 34rem;
}

.hero__trust-stat {
  min-width: 0;
}

.hero__trust-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(248, 241, 228, 0.96);
}

.hero__trust-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(224, 192, 131, 0.62);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 192, 131, 0.55);
}

.btn--gold {
  background: linear-gradient(180deg, #d3ad6f, #a97938);
  border-color: #d9bb7d;
  color: #07100b;
  box-shadow: 0 16px 34px rgba(200, 154, 88, 0.22);
}

.btn--gold:hover {
  box-shadow: 0 22px 44px rgba(200, 154, 88, 0.32);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn--plain {
  border-color: transparent;
  color: var(--gold-2);
}

/* ---- Search panel ---- */
.lux-panel,
.provider-cta {
  position: relative;
}

.search-panel {
  padding: clamp(1.35rem, 2.6vw, 1.85rem);
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.12), rgba(246, 241, 231, 0.05)),
    rgba(9, 17, 12, 0.82);
  border: 1px solid rgba(224, 192, 131, 0.22);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.search-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(224, 192, 131, 0.08);
  margin: 4px;
}

.search-panel__top,
.offer-toolbar,
.offer-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.search-panel__top {
  margin-bottom: 1rem;
  color: var(--stone);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-panel__top strong {
  color: var(--gold-2);
}

.search-box {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.search-box span {
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(224, 192, 131, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(2, 6, 4, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.search-field:focus-within {
  border-color: rgba(224, 192, 131, 0.62);
  background: rgba(2, 6, 4, 0.88);
  box-shadow:
    0 0 0 1px rgba(224, 192, 131, 0.18),
    0 0 24px rgba(200, 154, 88, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-field__icon {
  flex-shrink: 0;
  margin: 0;
  padding: 0 0 0 1rem;
  border: 0;
  background: none;
  color: var(--gold-2);
  font: inherit;
  font-size: 1.05rem;
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.search-field__icon:hover {
  opacity: 1;
  color: var(--gold);
}

.search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ivory);
  padding: 1.05rem 1rem 1.05rem 0.55rem;
  outline: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.search-field__ghost {
  position: absolute;
  left: 2.35rem;
  right: 1rem;
  color: rgba(246, 241, 231, 0.38);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-field__ghost.is-hidden {
  opacity: 0;
}

.search-field__ghost::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin-left: 1px;
  background: rgba(224, 192, 131, 0.55);
  vertical-align: text-bottom;
  animation: searchCaret 1s step-end infinite;
}

.search-field.is-idle .search-field__ghost::after {
  animation-play-state: running;
}

.search-field:not(.is-idle) .search-field__ghost::after {
  animation-play-state: paused;
  opacity: 0;
}

@keyframes searchCaret {
  50% { opacity: 0; }
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  border: 1px solid rgba(224, 192, 131, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 241, 231, 0.78);
  padding: 0.62rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.chip:hover,
.chip.is-active {
  border-color: var(--gold);
  background: rgba(200, 154, 88, 0.16);
  color: var(--gold-2);
}

.chip.is-active {
  transform: translateY(-1px);
}

.availability-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.availability-strip div {
  border: 1px solid rgba(224, 192, 131, 0.14);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.8rem;
}

.availability-strip small,
.facts dt {
  display: block;
  color: var(--stone);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.availability-strip strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--ivory);
  font-size: 0.85rem;
}

/* ---- Sections ---- */
.section {
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.2rem, 4vw, 4rem) clamp(4rem, 7vw, 6.5rem);
  position: relative;
}

.section-head {
  width: min(1440px, 100%);
  margin: 0 auto 1.7rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section h2,
.provider-cta h2 {
  margin-top: 0.6rem;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 0.95;
}

.section-head p {
  max-width: 30rem;
  margin: 0;
  color: var(--ivory-dim);
  line-height: 1.7;
}

.section--offers {
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 154, 88, 0.08), transparent 24rem),
    linear-gradient(180deg, #0b130e 0%, #101c14 100%);
  padding-top: clamp(1.1rem, 2.2vw, 1.85rem);
  padding-bottom: clamp(2rem, 3.8vw, 3.2rem);
  overflow: visible;
}

/* ---- Cinematic feature block ---- */
.cinematic {
  position: relative;
  min-height: clamp(28rem, 62vh, 40rem);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.cinematic__media,
.cinematic__shade {
  position: absolute;
  inset: 0;
}

.cinematic__media {
  z-index: 0;
}

.cinematic__media video,
.cinematic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.72);
}

.cinematic__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 10, 7, 0.94) 0%, rgba(8, 16, 11, 0.72) 42%, rgba(5, 10, 7, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 10, 7, 0.2) 0%, rgba(5, 10, 7, 0.88) 100%);
}

.cinematic__inner {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 4rem);
}

.cinematic h2 {
  max-width: 14ch;
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.92;
  font-weight: 500;
}

.cinematic p {
  max-width: 38rem;
  margin-top: 1.2rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

.cinematic__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(224, 192, 131, 0.16);
}

.cinematic__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-2);
  line-height: 1;
}

.cinematic__stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.offers-empty {
  margin-top: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(224, 192, 131, 0.18);
  background: rgba(8, 16, 11, 0.45);
  color: var(--stone);
}
.offers-empty p {
  margin: 0 0 1rem;
}
.offers-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.footer__newsletter-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(246, 241, 231, 0.62);
}

/* ---- Species filter (Discover Czech Hunting Game) ---- */
.section--species {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 154, 88, 0.12), transparent 24rem),
    linear-gradient(180deg, #122018 0%, #101c14 100%);
  text-align: center;
  transition:
    max-height 0.45s var(--ease-out, ease),
    opacity 0.35s ease,
    padding 0.45s var(--ease-out, ease),
    transform 0.45s var(--ease-out, ease);
}

.species-section {
  width: min(1440px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.species-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.species-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 500;
  margin: 0 0 1.1rem;
  color: var(--ivory);
}

.species-lead {
  max-width: 36rem;
  margin: 0 auto 1rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}

.species-head .gold-line {
  margin: 0 auto;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.1rem;
}

.species-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.1rem 1.5rem;
  border: 2px solid transparent;
  background:
    linear-gradient(
      135deg,
      rgba(255, 236, 195, 0.28) 0%,
      rgba(214, 172, 102, 0.92) 18%,
      rgba(143, 105, 48, 0.58) 50%,
      rgba(222, 186, 118, 0.88) 82%,
      rgba(255, 228, 178, 0.24) 100%
    );
  color: var(--ivory);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition:
    border-color 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    transform 0.32s var(--ease-out);
}

.species-card::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(180deg, rgba(28, 50, 38, 0.96), rgba(20, 36, 27, 0.92));
  pointer-events: none;
  z-index: 0;
  transition: background 0.32s var(--ease-out);
}

.species-card > * {
  position: relative;
  z-index: 1;
}

.species-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 18px rgba(214, 172, 102, 0.18),
    0 0 36px rgba(214, 172, 102, 0.08);
}

.species-card.is-active {
  border-color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(224, 192, 131, 0.35),
    0 0 24px rgba(200, 154, 88, 0.28),
    0 0 48px rgba(200, 154, 88, 0.12);
}

.species-card.is-active::before {
  background: linear-gradient(180deg, rgba(36, 58, 44, 0.98), rgba(28, 46, 34, 0.94));
}

.species-card__icon {
  width: clamp(4.5rem, 7vw, 6.5rem);
  height: clamp(4.5rem, 7vw, 6.5rem);
  object-fit: contain;
  margin: 0 auto 1rem;
  opacity: 0.92;
  filter: brightness(0.98) sepia(0.25);
  transition: transform 0.32s var(--ease-out), filter 0.32s var(--ease-out), opacity 0.32s ease;
}

.species-card:hover .species-card__icon,
.species-card.is-active .species-card__icon {
  transform: translateY(-3px) scale(1.05);
  opacity: 1;
  filter: brightness(1.08) drop-shadow(0 0 14px rgba(184, 139, 74, 0.28));
}

.species-card__name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.species-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(3rem, 5vw, 5rem);
}

.species-side {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d8bb86;
  opacity: 0.95;
}

.species-side .divider {
  opacity: 0.42;
  color: var(--gold-deep);
}

.species-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 139, 74, 0.34);
  background: linear-gradient(180deg, rgba(18, 45, 31, 0.96), rgba(14, 30, 22, 0.96));
  color: var(--ivory);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.species-btn:hover {
  transform: translateY(-2px);
  border-color: #d3b074;
  box-shadow: 0 0 24px rgba(184, 139, 74, 0.14);
}

@media (max-width: 1100px) {
  .species-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .species-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .species-cta-row {
    flex-direction: column;
    gap: 1.1rem;
  }

  .species-side {
    justify-content: center;
  }
}

/* Featured experiences transition */
[data-featured-head] h2,
[data-featured-head] p,
[data-featured-eyebrow] {
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

[data-featured-head].is-transitioning h2,
[data-featured-head].is-transitioning p,
[data-featured-head].is-transitioning [data-featured-eyebrow] {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.offer-track[data-featured-track] {
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.offer-track[data-featured-track].is-transitioning {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  pointer-events: none;
}

.offer-track[data-featured-track].is-track-fresh > .offer-card,
.offer-track[data-featured-track].is-track-fresh > .featured-empty {
  animation: featured-card-in var(--duration-reveal) var(--ease-out) both;
}

.offer-track[data-featured-track].is-track-fresh > :nth-child(1) { animation-delay: 0.05s; }
.offer-track[data-featured-track].is-track-fresh > :nth-child(2) { animation-delay: 0.11s; }
.offer-track[data-featured-track].is-track-fresh > :nth-child(3) { animation-delay: 0.17s; }
.offer-track[data-featured-track].is-track-fresh > :nth-child(4) { animation-delay: 0.23s; }
.offer-track[data-featured-track].is-track-fresh > :nth-child(5) { animation-delay: 0.29s; }

@keyframes featured-card-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy--stagger > * {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .species-card,
  .species-card__icon,
  [data-featured-head] h2,
  [data-featured-head] p,
  [data-featured-eyebrow],
  .offer-track[data-featured-track],
  .offer-track[data-featured-track] > .offer-card,
  .offer-track[data-featured-track] > .featured-empty,
  .group-marketplace-slot.is-entering .group-marketplace {
    transition: none !important;
    animation: none !important;
  }
}

/* ---- Popular hunts carousel ---- */
.section--popular {
  background:
    radial-gradient(circle at 88% 0%, rgba(200, 154, 88, 0.1), transparent 22rem),
    linear-gradient(180deg, #101c14 0%, #0b130e 100%);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.section--group-dates {
  background:
    radial-gradient(circle at 12% 100%, rgba(200, 154, 88, 0.08), transparent 20rem),
    linear-gradient(180deg, #0b130e 0%, #101c14 100%);
  padding-top: clamp(2.25rem, 4.5vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.section--group-dates[hidden] {
  display: none !important;
}

.section--group-dates .group-dates-empty {
  margin: 0 auto;
  max-width: 36rem;
}

.section--group-dates .section-head,
.section--group-dates .section-head--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
  gap: 0.85rem;
}

.section--group-dates .section-head .eyebrow[hidden] {
  display: none !important;
}

.section--group-dates .section-head h2 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  letter-spacing: 0.01em;
  margin-top: 0;
}

.section--group-dates .section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(224, 192, 131, 0.68);
}

.section--group-dates .offer-track[data-group-dates-track] > .offer-card--compact {
  flex: 0 0 min(280px, 78vw);
  max-width: 20rem;
  scroll-snap-align: start;
}

.section--group-dates .offer-card--join-group .fact--places {
  background: rgba(200, 154, 88, 0.12);
  border-color: rgba(200, 154, 88, 0.28);
}

.section--group-dates .offer-card--join-group .fact--places dd strong {
  color: rgba(232, 201, 142, 0.95);
}

.offer-track-wrap {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offer-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1rem;
  flex: 1;
}

.offer-track::-webkit-scrollbar {
  display: none;
}

.offer-track > .offer-card {
  flex: 0 0 min(22rem, 78vw);
  scroll-snap-align: start;
}

.track-arrow {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(224, 192, 131, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-2);
  font-size: 1.6rem;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.track-arrow:hover {
  border-color: var(--gold);
  background: rgba(200, 154, 88, 0.12);
  transform: scale(1.06);
}

.offer-card--compact h3 {
  font-size: 1.45rem;
}

.facts--compact {
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.facts--compact div {
  padding-top: 0.55rem;
}

.section--offers .section-head,
.section--offers .offer-toolbar,
.section--offers .offer-grid {
  width: 100%;
}

.offer-toolbar {
  margin: 0 0 1.2rem;
  color: var(--stone);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-toolbar a,
.experience-card a,
.footer a {
  transition: color 0.2s ease;
}

.offer-toolbar a:hover,
.experience-card a:hover,
.footer__col a:hover {
  color: var(--gold-2);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.offer-card {
  position: relative;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--card);
  border: 1px solid rgba(224, 192, 131, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.45s var(--ease-out);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover,
.offer-card:has(.offer-card__link:hover) {
  transform: translateY(-8px);
  border-color: rgba(224, 192, 131, 0.42);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(200, 154, 88, 0.08);
}

.offer-card:hover::after,
.offer-card:has(.offer-card__link:hover)::after {
  border-color: rgba(224, 192, 131, 0.22);
  box-shadow: inset 0 0 24px rgba(200, 154, 88, 0.06);
}

.offer-card.is-hidden {
  display: none;
}

.offer-card__image {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #0a100c;
}

.offer-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 10, 7, 0.55) 100%);
  pointer-events: none;
}

.offer-card__image img,
.experience-card__media img,
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.offer-card:hover .offer-card__image img,
.offer-card:has(.offer-card__link:hover) .offer-card__image img {
  transform: scale(1.08);
  filter: brightness(0.82);
}

.badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: rgba(9, 17, 12, 0.82);
  border: 1px solid rgba(224, 192, 131, 0.42);
  color: var(--gold-2);
  padding: 0.42rem 0.58rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.badge--urgent {
  background: rgba(200, 91, 68, 0.88);
  border-color: rgba(255, 210, 184, 0.42);
  color: #fff4ea;
}

.badge--limited {
  background: rgba(174, 125, 48, 0.9);
  color: #fff5dc;
}

.badge--new {
  background: rgba(53, 111, 77, 0.9);
  color: #e8fff1;
}

.offer-card__body {
  position: relative;
  padding: 1.1rem 1.1rem 1rem;
}

.offer-card__line {
  display: block;
  width: 3.2rem;
  height: 1px;
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.offer-card__meta {
  color: var(--gold-2);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h3,
.experience-card h3,
.destination-card h3 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.02;
  font-weight: 500;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.72rem;
  margin: 1rem 0;
}

.facts div {
  padding-top: 0.72rem;
  border-top: 1px solid rgba(224, 192, 131, 0.13);
}

.facts dd {
  margin: 0.24rem 0 0;
  color: var(--ivory);
  font-size: 0.88rem;
}

.fact--date dd,
.fact--duration dd {
  color: var(--gold-2);
  font-weight: 600;
}

.fact--spots {
  background: rgba(200, 154, 88, 0.08);
  border: 1px solid rgba(224, 192, 131, 0.18);
  padding: 0.55rem 0.65rem 0.65rem !important;
  border-top: 1px solid rgba(224, 192, 131, 0.18) !important;
}

.fact--spots dd strong {
  color: #f2d49b;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.offer-card__bottom {
  border-top: 1px solid rgba(224, 192, 131, 0.14);
  padding-top: 0.95rem;
}

.offer-card__price {
  color: var(--stone);
  font-size: 0.82rem;
}

.offer-card__price strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--ivory);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.offer-card__price-note {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--stone);
}

.offer-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  text-decoration: none;
  color: inherit;
}

/* Interactive controls on the card must stack above the stretch link. */
.offer-card [data-availability-open] {
  position: relative;
  z-index: 4;
}

.offer-card__link:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 2px;
}

.offer-card__cta {
  position: relative;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.2s ease;
}

.offer-card:hover .offer-card__cta,
.offer-card:focus-within .offer-card__cta,
.offer-card:has(.offer-card__link:hover) .offer-card__cta,
.offer-card:has(.offer-card__link:focus-visible) .offer-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Experiences (light premium section) ---- */
.section--experiences {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: #101c14;
  color: #17241c;
  padding-top: clamp(1.2rem, 2.4vw, 2rem);
  padding-bottom: clamp(1.2rem, 2.4vw, 2rem);
}

.section--experiences::before,
.section--experiences::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.section--experiences::before {
  top: 0;
  height: clamp(4rem, 11vw, 7rem);
  background: linear-gradient(
    180deg,
    #0b130e 0%,
    rgba(13, 22, 16, 0.92) 28%,
    rgba(22, 38, 29, 0.45) 62%,
    rgba(241, 234, 223, 0) 100%
  );
}

.section--experiences::after {
  bottom: 0;
  height: clamp(4rem, 11vw, 7rem);
  background: linear-gradient(
    0deg,
    #0b130e 0%,
    rgba(13, 22, 16, 0.92) 28%,
    rgba(22, 38, 29, 0.45) 62%,
    rgba(241, 234, 223, 0) 100%
  );
}

.section--experiences .lux-frame--light {
  position: relative;
  z-index: 1;
}

.section--experiences .eyebrow,
.section--experiences .experience-card a {
  color: #a97736;
}

.section--experiences .eyebrow::before {
  background: #a97736;
}

.section--experiences .section-head p {
  color: rgba(23, 36, 28, 0.68);
}

.experience-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.experience-card {
  position: relative;
  display: grid;
  grid-template-rows: 15rem 1fr;
  background: #fffaf0;
  border: 1px solid rgba(122, 83, 38, 0.18);
  box-shadow: 0 18px 40px rgba(89, 62, 28, 0.08);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 139, 74, 0.38);
  box-shadow: 0 28px 54px rgba(89, 62, 28, 0.14);
}

.experience-card__media {
  overflow: hidden;
}

.experience-card:hover .experience-card__media img {
  transform: scale(1.06);
}

.experience-card__body {
  position: relative;
  padding: 1.1rem;
}

.experience-card span {
  color: #a97736;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-card p {
  color: rgba(23, 36, 28, 0.68);
  line-height: 1.65;
}

.experience-card a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Destinations ---- */
/* ---- Map teaser ---- */
.map-teaser {
  position: relative;
  min-height: clamp(24rem, 52vh, 34rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.map-teaser__bg,
.map-teaser__overlay {
  position: absolute;
  inset: 0;
}

.map-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.08) saturate(0.85);
}

.map-teaser__overlay {
  background:
    radial-gradient(circle at center, rgba(8, 18, 12, 0.15) 35%, rgba(6, 14, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 14, 9, 0.82) 0%, rgba(6, 18, 12, 0.55) 50%, rgba(4, 14, 9, 0.9) 100%);
}

.map-teaser__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 2rem);
}

.map-teaser h2 {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 500;
}

.map-teaser p {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

.map-teaser__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 1.8rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.section--destinations {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 154, 88, 0.12), transparent 28rem),
    linear-gradient(180deg, #0b130e 0%, #122018 100%);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* ---- Category offer grids ---- */
.section--categories {
  background:
    radial-gradient(circle at 10% 100%, rgba(200, 154, 88, 0.08), transparent 24rem),
    #101c14;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.category-tabs {
  width: min(1440px, 100%);
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-tab {
  border: 1px solid rgba(224, 192, 131, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 241, 231, 0.72);
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-tab:hover,
.category-tab.is-active {
  border-color: var(--gold);
  background: rgba(200, 154, 88, 0.14);
  color: var(--gold-2);
}

.category-panel {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-panel.is-active {
  display: grid;
}

/* ---- Proof / testimonials ---- */
.section--proof {
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.04), rgba(246, 241, 231, 0.01)),
    #0b130e;
  border-top: 1px solid rgba(224, 192, 131, 0.1);
  border-bottom: 1px solid rgba(224, 192, 131, 0.1);
}

.proof-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-card {
  margin: 0;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(17, 28, 21, 0.72);
  border: 1px solid rgba(224, 192, 131, 0.14);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 192, 131, 0.32);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.proof-card p {
  margin: 0;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-size: 0.95rem;
}

.proof-card footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(224, 192, 131, 0.12);
}

.proof-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.proof-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.proof-metrics {
  width: min(1440px, 100%);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(224, 192, 131, 0.12);
}

.proof-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-2);
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.destination-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.destination-card {
  position: relative;
  min-height: 23rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(224, 192, 131, 0.16);
  isolation: isolate;
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.45s var(--ease-out);
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 192, 131, 0.42);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
}

.destination-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.destination-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.destination-card span {
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Provider CTA ---- */
.provider-cta {
  width: min(1440px, calc(100% - clamp(2.4rem, 8vw, 8rem)));
  margin: clamp(2.5rem, 5vw, 4rem) auto clamp(3rem, 6vw, 5rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(224, 192, 131, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(18, 32, 24, 0.92);
  border: 1px solid rgba(224, 192, 131, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.provider-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8b980, transparent);
}

.provider-cta p {
  max-width: 44rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

/* ---- Premium footer ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  background: linear-gradient(180deg, #182820 0%, #121c16 100%);
  padding: clamp(2.25rem, 4.5vw, 3.5rem) clamp(1.2rem, 4vw, 4rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(184, 139, 74, 0.1);
}

.footer__main {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(0, 2.2fr) minmax(14rem, 1fr);
  gap: clamp(2.75rem, 6vw, 5rem);
  align-items: start;
}

.footer__logo {
  width: min(10.5rem, 68%);
  margin-bottom: 0.85rem;
  opacity: 0.92;
}

.footer__desc {
  margin: 0;
  max-width: 18rem;
  color: rgba(246, 241, 231, 0.58);
  line-height: 1.55;
  font-size: 0.84rem;
}

.footer__trust {
  margin: 0.55rem 0 0;
  max-width: 18rem;
  color: rgba(224, 192, 131, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.footer__trust span {
  opacity: 0.75;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

.footer__col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 192, 131, 0.82);
  font-weight: 500;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--gold-2);
}

.footer__newsletter h4 {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 192, 131, 0.82);
  font-weight: 500;
}

.footer__newsletter p {
  margin: 0 0 0.85rem;
  color: rgba(246, 241, 231, 0.52);
  line-height: 1.45;
  font-size: 0.82rem;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__form input {
  width: 100%;
  border: 1px solid rgba(224, 192, 131, 0.16);
  background: rgba(7, 14, 10, 0.45);
  color: var(--ivory);
  padding: 0.72rem 0.85rem;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer__form input::placeholder {
  color: rgba(246, 241, 231, 0.32);
}

.footer__form input:focus {
  border-color: rgba(224, 192, 131, 0.38);
}

.footer__form .btn {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
}

.footer__bar {
  width: min(1320px, 100%);
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
}

.footer__rule {
  margin: 0 0 1.1rem;
  border: 0;
  border-top: 1px solid rgba(184, 139, 74, 0.12);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.36);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.footer__legal a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: rgba(224, 192, 131, 0.72);
}

/* ---- Custom cursor (instant tracking, animated hover only) ---- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(224, 192, 131, 0.78);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10100;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition:
    width 0.28s ease,
    height 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    opacity 0.18s ease;
  display: grid;
  place-items: center;
  will-change: transform;
}

.custom-cursor span {
  opacity: 0;
  color: #07100b;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.custom-cursor.is-hidden {
  opacity: 0;
}

.custom-cursor.is-hover {
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-color: var(--gold);
}

.custom-cursor.is-label {
  width: 76px;
  height: 76px;
  background: var(--gold);
  border-color: var(--gold-2);
  box-shadow: 0 16px 34px rgba(200, 154, 88, 0.22);
}

.custom-cursor.is-label span {
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .experience-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-grid,
  .category-panel,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .footer__nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lux-frame--dark .section-head,
  .lux-frame--dark .offer-toolbar {
    padding-right: clamp(2rem, 5vw, 4rem);
  }

  .lux-frame__ornament {
    width: clamp(5rem, 14vw, 7rem);
    opacity: 0.36;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .site-header__start {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header__start .main-nav--primary {
    display: none;
  }

  .main-nav--auth {
    display: none;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .site-header.is-open {
    align-items: flex-start;
    padding-bottom: 0;
    background: rgba(7, 16, 11, 0.94);
    border-bottom-color: var(--line);
  }

  .site-header.is-open .site-header__start {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-header.is-open .main-nav--primary,
  .site-header.is-open .main-nav--auth {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.25rem 0 1rem;
    background: transparent;
    border-bottom: none;
    position: static;
  }

  .site-header.is-open .main-nav--auth {
    border-top: 1px solid rgba(224, 192, 131, 0.12);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav a {
    padding: 0.9rem 0;
    border-top: 1px solid rgba(224, 192, 131, 0.1);
  }

  .main-nav a.main-nav__last-minute,
  .main-nav a.main-nav__auth-btn {
    margin: 0.35rem 0 0;
    align-self: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__image,
  .hero__video {
    object-position: center 42%;
  }

  .hero__trust-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 0.75rem;
    justify-items: center;
    max-width: 100%;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }

  .hero__trust-eyebrow {
    max-width: none;
  }

  .availability-strip,
  .offer-grid,
  .experience-row,
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .offer-card__bottom,
  .provider-cta,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .destination-card {
    min-height: 18rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
  }

  .lux-frame--dark .section-head,
  .lux-frame--dark .offer-toolbar,
  .lux-frame--light .section-head {
    padding-right: 0;
  }

  .lux-frame__ornament {
    width: 4.5rem;
    opacity: 0.3;
  }

  .lux-frame__ornament--tr {
    top: 0.4rem;
    right: 0.4rem;
    left: unset;
    bottom: unset;
    transform: rotate(-4deg);
  }

  .lux-frame__ornament--bl {
    bottom: 0.4rem;
    left: 0.4rem;
    transform: rotate(176deg);
  }

  .track-arrow {
    display: none;
  }

  .category-panel {
    grid-template-columns: 1fr;
  }

  .offer-card__cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero__actions,
  .btn {
    width: 100%;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 3.5rem;
  }

  .section--experiences {
    padding-top: clamp(0.85rem, 2.5vw, 1.25rem);
    padding-bottom: clamp(0.85rem, 2.5vw, 1.25rem);
  }

  .section--experiences::before,
  .section--experiences::after {
    height: clamp(2.75rem, 16vw, 4.5rem);
  }

  .section--offers + .section-bridge--to-light,
  .section--experiences + .section-bridge--to-dark {
    padding-block: 0.55rem;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none !important;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

/* ---- Mobile-only polish (Homepage V2, max-width 768px) ---- */
@media (max-width: 768px) {
  /* Species filter — compact 3-column grid */
  .section--species {
    padding-top: 2.5rem;
    padding-bottom: 1.25rem;
  }

  .species-head {
    margin-bottom: 1rem;
  }

  .species-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    margin-bottom: 0.65rem;
  }

  .species-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem;
    max-width: 22rem;
    margin-inline: auto;
  }

  .species-grid::before {
    content: "Tap a species to filter hunts below";
    grid-column: 1 / -1;
    margin-bottom: 0.15rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(224, 192, 131, 0.72);
  }

  .species-card {
    padding: 0.5rem 0.2rem 0.42rem;
    border-width: 1.5px;
  }

  .species-card__icon {
    width: 1.65rem;
    height: 1.65rem;
    margin-bottom: 0.3rem;
  }

  .species-card__name {
    font-size: 0.56rem;
    letter-spacing: 0.07em;
    line-height: 1.2;
  }

  .species-card.is-active {
    transform: none;
    box-shadow:
      0 0 0 1px rgba(224, 192, 131, 0.45),
      0 0 14px rgba(200, 154, 88, 0.32);
  }

  .species-cta-row {
    margin-top: 1rem;
    gap: 0;
    justify-content: center;
  }

  .species-side {
    display: none !important;
  }

  .species-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Mobile carousel — wider premium cards */
  html.has-mobile-carousel {
    --mobile-carousel-card-width: min(92vw, 390px);
    --mobile-carousel-arrow-size: 2rem;
  }

  /* Mobile carousel chrome */
  html.has-mobile-carousel .track-arrow,
  html.has-mobile-carousel .mobile-carousel__arrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: var(--mobile-carousel-arrow-size);
    height: var(--mobile-carousel-arrow-size);
    font-size: 1.2rem;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    margin: 0;
    background: rgba(7, 16, 11, 0.72);
    backdrop-filter: blur(4px);
  }

  html.has-mobile-carousel .track-arrow--prev,
  html.has-mobile-carousel .mobile-carousel__arrow--prev {
    left: max(0.2rem, calc((100vw - var(--mobile-carousel-card-width)) / 2 - var(--mobile-carousel-arrow-size) - 0.15rem));
  }

  html.has-mobile-carousel .track-arrow--next,
  html.has-mobile-carousel .mobile-carousel__arrow--next {
    right: max(0.2rem, calc((100vw - var(--mobile-carousel-card-width)) / 2 - var(--mobile-carousel-arrow-size) - 0.15rem));
  }

  html.has-mobile-carousel .track-arrow:hover,
  html.has-mobile-carousel .mobile-carousel__arrow:hover {
    transform: translateY(-50%) scale(1.05);
  }

  html.has-mobile-carousel .track-arrow:disabled,
  html.has-mobile-carousel .mobile-carousel__arrow:disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  html.has-mobile-carousel .offer-track-wrap,
  html.has-mobile-carousel .mobile-carousel-host.is-mobile-carousel-host {
    position: relative;
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  html.has-mobile-carousel .offer-track.mobile-carousel__track,
  html.has-mobile-carousel [data-offer-grid].mobile-carousel__track,
  html.has-mobile-carousel .category-panel.mobile-carousel__track.is-active,
  html.has-mobile-carousel .proof-grid.mobile-carousel__track {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    width: 100%;
    min-width: 0;
    padding: 0.35rem 0 0.85rem;
    grid-template-columns: unset !important;
    scroll-padding-inline: calc((100vw - var(--mobile-carousel-card-width)) / 2);
  }

  html.has-mobile-carousel .offer-track.mobile-carousel__track > .offer-card,
  html.has-mobile-carousel [data-offer-grid].mobile-carousel__track > .offer-card,
  html.has-mobile-carousel .category-panel.mobile-carousel__track.is-active > .offer-card,
  html.has-mobile-carousel body.homepage-mode-group .offer-track.mobile-carousel__track > .offer-card--group-event,
  html.has-mobile-carousel .section--group-dates .offer-track.mobile-carousel__track > .offer-card--group-event,
  html.has-mobile-carousel .section--group-dates .offer-track.mobile-carousel__track > .offer-card--compact,
  html.has-mobile-carousel .proof-grid.mobile-carousel__track > .proof-card {
    flex: 0 0 var(--mobile-carousel-card-width);
    width: var(--mobile-carousel-card-width);
    max-width: var(--mobile-carousel-card-width);
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  html.has-mobile-carousel .proof-grid.mobile-carousel__track > .proof-card {
    min-height: auto;
  }

  html.has-mobile-carousel .mobile-carousel-host.is-mobile-carousel-host:has(.category-panel[hidden]) {
    display: none !important;
  }

  html.has-mobile-carousel .category-panel:not(.is-active) {
    display: none !important;
  }

  html.has-mobile-carousel .section--popular .offer-track-wrap {
    padding-inline: 0;
  }

  html.has-mobile-carousel .section--categories .mobile-carousel-host.is-mobile-carousel-host,
  html.has-mobile-carousel .section--proof .mobile-carousel-host.is-mobile-carousel-host {
    padding-inline: 0;
  }

  html.has-mobile-carousel .section--offers .lux-frame--dark {
    overflow: visible;
  }

  html.has-mobile-carousel .section--offers .lux-frame--dark,
  html.has-mobile-carousel .section--categories,
  html.has-mobile-carousel .section--proof,
  html.has-mobile-carousel .section--popular {
    overflow-x: clip;
  }

  .footer__desc {
    margin-inline: auto;
  }

  .footer__trust {
    margin-inline: auto;
  }

  /* Footer — centered on mobile */
  .footer {
    overflow-x: clip;
  }

  .footer__main {
    text-align: center;
    justify-items: center;
    max-width: 100%;
    overflow-x: clip;
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footer__desc {
    margin-inline: auto;
  }

  .footer__nav {
    width: 100%;
    max-width: 100%;
    justify-items: center;
    text-align: center;
    overflow-x: clip;
  }

  .footer__col {
    align-items: center;
  }

  .footer__newsletter {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    text-align: center;
  }

  .footer__form {
    width: 100%;
    align-items: stretch;
  }

  .footer__bottom {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobile-carousel-host {
    display: contents;
  }

  .mobile-carousel-host > .mobile-carousel__arrow {
    display: none !important;
  }
}

/* ---- Offers catalogue layout (hunts.html discovery parity) ---- */
.offers-layout {
  display: grid;
  grid-template-columns: 0fr minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: min(1440px, 100%);
  margin: 0 auto;
  transition:
    grid-template-columns 0.85s var(--ease-out),
    gap 0.85s var(--ease-out);
}

.offers-main {
  min-width: 0;
}

.section--offers .offers-main .lux-frame {
  width: 100%;
  margin: 0;
  padding: clamp(1.6rem, 2.8vw, 2.6rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.8rem);
}

.section--offers .offers-main .lux-frame__ornament--tr {
  opacity: 0.42;
}

.section--offers .offers-main .lux-frame__ornament--bl {
  opacity: 0.34;
}

.browse-filter {
  position: relative;
  z-index: 2;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transform: translateX(-1.25rem);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.85s var(--ease-out),
    visibility 0.85s;
  will-change: opacity, transform;
}

.browse-filter.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  overflow: visible;
}

.section--offers.is-filtering .offers-layout {
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 3.5rem);
}

@media (min-width: 1100px) {
  .section--offers.is-filtering .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

.offers-refine-zone {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  height: 100%;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1.5vw, 1rem) clamp(2.85rem, 4.5vw, 3.65rem) 0;
  overflow: visible;
}

.offers-refine-zone::before {
  content: "";
  position: absolute;
  inset: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(0.5rem, 2vw, 1.25rem) clamp(-0.5rem, 0vw, 0);
  pointer-events: none;
  z-index: 0;
  border: 1px solid rgba(184, 139, 74, 0.12);
  background: linear-gradient(168deg, rgba(28, 52, 36, 0.22) 0%, rgba(14, 24, 18, 0.38) 55%, transparent 100%);
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.03);
}

.browse-filter .filter-rail-wrap {
  position: sticky;
  top: 120px;
  z-index: 1;
  overflow: visible;
}

.browse-filter .filter-rail {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(184, 139, 74, 0.24);
  background: linear-gradient(168deg, rgba(28, 52, 36, 0.5), rgba(14, 24, 18, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.05),
    0 20px 48px -36px rgba(0, 0, 0, 0.45);
}

.browse-filter .filter-rail__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.browse-filter .filter-rail .corner {
  opacity: 0.38;
}

.browse-filter .filter-rail:hover .corner {
  opacity: 0.58;
}

.browse-filter [data-browse-groups] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.browse-filter .section-eyebrow {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b88b4a;
}

.browse-filter .filter-group {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 139, 74, 0.1);
}

.browse-filter .filter-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.browse-filter .filter-group__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184, 139, 74, 0.14);
}

.browse-filter .filter-group__head[style*="border:0"] {
  margin-bottom: 0;
  padding-bottom: 0;
}

.browse-filter .filter-opt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
  transition: color 0.35s ease;
}

.browse-filter .filter-opt:hover,
.browse-filter .filter-opt.is-active {
  color: #f4efe5;
}

.browse-filter .filter-opt:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.browse-filter .filter-opt__box {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(184, 139, 74, 0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.browse-filter .filter-opt__box::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #b88b4a;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.browse-filter .filter-opt.is-active .filter-opt__box::after {
  transform: scale(1);
}

.browse-filter .filter-opt__count {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #8a857c;
}

.browse-filter .filter-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b88b4a;
  padding: 0;
  transition: color 0.3s ease;
}

.browse-filter .filter-clear:hover {
  color: #f4efe5;
}

.browse-filter .filter-group--empty {
  opacity: 0.92;
}

.browse-filter .filter-group__empty {
  margin: 0 0 0.75rem;
  color: rgba(246, 241, 231, 0.42);
  font-size: 0.82rem;
  line-height: 1.55;
}

.browse-filter .filter-group__catalogue {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b88b4a;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 139, 74, 0.28);
  padding-bottom: 0.15rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.browse-filter .filter-group__catalogue:hover {
  color: #f4efe5;
  border-color: rgba(244, 239, 229, 0.35);
}

.browse-filter__search-box {
  display: grid;
  gap: 0.55rem;
  margin-top: -0.35rem;
}

.browse-filter__search-label {
  color: rgba(246, 241, 231, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.browse-filter__search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(184, 139, 74, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(2, 6, 4, 0.45);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.browse-filter__search:focus-within {
  border-color: rgba(224, 192, 131, 0.55);
  box-shadow: 0 0 0 1px rgba(184, 139, 74, 0.12);
}

.browse-filter__icon {
  padding-left: 0.75rem;
  color: #b88b4a;
  opacity: 0.9;
}

.browse-filter__search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ivory);
  padding: 0.82rem 0.85rem 0.82rem 0.45rem;
  outline: none;
  font: inherit;
  font-size: 0.86rem;
}

.browse-filter__search input::placeholder {
  color: transparent;
}

@media (max-width: 1099px) {
  .offers-layout,
  .section--offers.is-filtering .offers-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
    width: min(1440px, 100%);
  }

  .browse-filter:not(.is-visible) {
    display: none;
  }

  .browse-filter.is-visible {
    display: block;
    transform: none;
  }

  .offers-refine-zone {
    padding: 0;
  }

  .offers-refine-zone::before {
    display: none;
  }

  .browse-filter .filter-rail-wrap {
    position: static;
  }

  .browse-filter .filter-rail {
    width: 100%;
  }

  .browse-filter .filter-rail__body {
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offers-layout,
  .browse-filter,
  .browse-filter .filter-opt__box::after {
    transition: none !important;
  }

  .browse-filter,
  .browse-filter.is-visible {
    transform: none !important;
  }
}
