/* ═══════════════════════════════════════════════════════════════
   SIOPY — Homepage Exclusive CSS
   Luxury Artisan Maker Aesthetic
   Load ONLY on index.php via <link rel="stylesheet" href="/home.css">
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Root Variables ─────────────────────────────────────────── */
:root {
  --h-ink:     #0C0C18;
  --h-cream:   #F7F2EA;
  --h-gold:    #C9973A;
  --h-gold-l:  #E8C97A;
  --h-purple:  #7B2D8B;
  --h-purple-d:#4E1A5A;
  --h-warm:    #F0E8D8;
  --h-muted:   #6B6560;
  --h-border:  rgba(201,151,58,0.2);
  --h-radius:  16px;
  --h-font-display: 'Playfair Display', Georgia, serif;
  --h-font-body:    'DM Sans', sans-serif;
  --h-font-mono:    'DM Mono', monospace;
}

/* ── Base Reset for Homepage ────────────────────────────────── */
.hp-section { font-family: var(--h-font-body); }

/* ── Hero ───────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--h-ink);
}

.hp-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.6);
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,24,0.92) 0%,
    rgba(78,26,90,0.5) 50%,
    rgba(12,12,24,0.85) 100%
  );
  z-index: 1;
}

.hp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hp-hero__eyebrow {
  font-family: var(--h-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hp-hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--h-gold);
}

.hp-hero__headline {
  font-family: var(--h-font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--h-cream);
  margin: 0 0 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hp-hero__headline em {
  font-style: italic;
  color: var(--h-gold-l);
}

.hp-hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(247,242,234,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

.hp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--h-gold);
  color: var(--h-ink);
  font-family: var(--h-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,151,58,0.4);
}

.hp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,151,58,0.6);
}

.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--h-cream);
  font-family: var(--h-font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(247,242,234,0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.hp-btn-outline:hover {
  border-color: var(--h-gold);
  background: rgba(201,151,58,0.08);
  color: var(--h-gold-l);
}

/* Hero Product Card */
.hp-hero__card {
  background: rgba(247,242,234,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 24px;
  padding: 28px;
  opacity: 0;
  animation: fadeLeft 0.9s 0.7s forwards;
}

.hp-hero__card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 20px;
}

.hp-hero__card-name {
  font-family: var(--h-font-display);
  font-size: 1.1rem;
  color: var(--h-cream);
  margin-bottom: 4px;
}

.hp-hero__card-price {
  font-family: var(--h-font-mono);
  font-size: 0.85rem;
  color: var(--h-gold);
}

.hp-hero__card-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: rgba(201,151,58,0.15);
  color: var(--h-gold-l);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
}

/* Scroll indicator */
.hp-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(247,242,234,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--h-font-mono);
  animation: bounce 2s infinite;
}

.hp-hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,151,58,0.6), transparent);
}

/* ── Promo Banner Strip ──────────────────────────────────────── */
.hp-banner-strip {
  background: var(--h-gold);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.hp-banner-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.hp-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: var(--h-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h-ink);
}

.hp-banner-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--h-ink);
  opacity: 0.4;
}

/* ── Section Base ────────────────────────────────────────────── */
.hp-section {
  padding: 100px 40px;
}

.hp-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hp-label {
  font-family: var(--h-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--h-gold);
}

.hp-title {
  font-family: var(--h-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--h-ink);
  margin: 0 0 16px;
}

.hp-title--light { color: var(--h-cream); }

/* ── Category Grid ───────────────────────────────────────────── */
.hp-cats {
  background: var(--h-warm);
}

.hp-cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.hp-cats__grid .cat-card:first-child {
  grid-column: span 2;
}

.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.cat-card:first-child { aspect-ratio: 16/9; }

.cat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cat-card:hover .cat-card__img { transform: scale(1.06); }

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,24,0.85) 0%, rgba(12,12,24,0.1) 60%);
  transition: opacity 0.3s;
}

.cat-card:hover .cat-card__overlay {
  background: linear-gradient(to top, rgba(78,26,90,0.9) 0%, rgba(78,26,90,0.2) 60%);
}

.cat-card__text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}

.cat-card__title {
  font-family: var(--h-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.cat-card__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.cat-card__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.cat-card:hover .cat-card__arrow {
  background: var(--h-gold);
  transform: rotate(45deg);
}

/* ── DIY Video Section ───────────────────────────────────────── */
.hp-videos {
  background: var(--h-ink);
  overflow: hidden;
}

.hp-videos__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.hp-videos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hp-videos__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.video-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #1A1A2A;
  cursor: pointer;
}

.video-card:first-child {
  grid-column: span 2;
}

.hp-videos__grid--3 .video-card:first-child {
  grid-column: span 1;
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.7);
}

.video-card:hover .video-card__thumb img { transform: scale(1.04); }

.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  background: rgba(201,151,58,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  border: 2px solid rgba(255,255,255,0.3);
}

.video-card__play svg { margin-left: 4px; }

.video-card:hover .video-card__play {
  transform: translate(-50%,-50%) scale(1.12);
  background: var(--h-gold);
}

.video-card__duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-family: var(--h-font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.video-card__info {
  padding: 20px;
}

.video-card__tag {
  font-family: var(--h-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h-gold);
  margin-bottom: 8px;
}

.video-card__title {
  font-family: var(--h-font-display);
  font-size: 1.05rem;
  color: var(--h-cream);
  line-height: 1.3;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.video-modal.open { display: flex; }

.video-modal__inner {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.video-modal__inner iframe {
  width: 100%; height: 100%;
  border: none;
}

.video-modal__close {
  position: absolute;
  top: -48px; right: 0;
  color: white;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.video-modal__close:hover { opacity: 1; }

/* ── Products Grid ───────────────────────────────────────────── */
.hp-products {
  background: white;
}

.hp-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.hp-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-prod-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--h-warm);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
  position: relative;
}

.hp-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(12,12,24,0.12);
}

.hp-prod-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.hp-prod-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hp-prod-card:hover .hp-prod-card__img { transform: scale(1.05); }

.hp-prod-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--h-purple);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.hp-prod-card__badge--gold {
  background: var(--h-gold);
  color: var(--h-ink);
}

.hp-prod-card__quick {
  position: absolute;
  bottom: 12px; right: 12px;
  background: white;
  color: var(--h-ink);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 1rem;
}

.hp-prod-card:hover .hp-prod-card__quick {
  opacity: 1;
  transform: scale(1);
}

.hp-prod-card__body {
  padding: 16px;
}

.hp-prod-card__title {
  font-family: var(--h-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.hp-prod-card__from {
  font-size: 0.72rem;
  color: var(--h-muted);
  margin-bottom: 8px;
  font-family: var(--h-font-mono);
}

.hp-prod-card__price {
  font-family: var(--h-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--h-ink);
}

.hp-prod-card__compare {
  font-size: 0.8rem;
  color: var(--h-muted);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ── Promo Split ─────────────────────────────────────────────── */
.hp-promo {
  background: var(--h-ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.hp-promo__visual {
  position: relative;
  overflow: hidden;
}

.hp-promo__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(0.5);
}

.hp-promo__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--h-ink));
}

.hp-promo__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.hp-promo__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hp-feature__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hp-feature__title {
  font-family: var(--h-font-body);
  font-weight: 600;
  color: var(--h-cream);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.hp-feature__desc {
  font-size: 0.8rem;
  color: rgba(247,242,234,0.5);
  line-height: 1.5;
}

/* ── How It Works ────────────────────────────────────────────── */
.hp-hiw {
  background: var(--h-warm);
}

.hp-hiw__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.hp-hiw__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--h-gold), var(--h-purple), var(--h-gold));
}

.hp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hp-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--h-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--h-gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--h-warm);
}

.hp-step__title {
  font-family: var(--h-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 8px;
}

.hp-step__desc {
  font-size: 0.82rem;
  color: var(--h-muted);
  line-height: 1.6;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.hp-reviews {
  background: white;
  overflow: hidden;
}

.hp-reviews__track {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hp-reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 340px;
  background: var(--h-warm);
  border-radius: 20px;
  padding: 28px;
  scroll-snap-align: start;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: var(--h-gold); }

.review-stars {
  color: var(--h-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-family: var(--h-font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--h-ink);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--h-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h-font-display);
  font-weight: 700;
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h-ink);
}

.review-loc {
  font-size: 0.72rem;
  color: var(--h-muted);
  font-family: var(--h-font-mono);
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.hp-trust {
  background: var(--h-ink);
  padding: 60px 40px;
}

.hp-trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.hp-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hp-trust__icon {
  font-size: 1.5rem;
  width: 52px; height: 52px;
  background: rgba(201,151,58,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,151,58,0.2);
}

.hp-trust__label {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--h-cream);
}

.hp-trust__desc {
  font-size: 0.68rem;
  color: rgba(247,242,234,0.4);
  line-height: 1.4;
}

/* ── Newsletter ──────────────────────────────────────────────── */
.hp-newsletter {
  background: linear-gradient(135deg, var(--h-purple-d) 0%, var(--h-purple) 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-newsletter::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,151,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hp-newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,151,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hp-nl__content { position: relative; z-index: 1; }

.hp-nl__title {
  font-family: var(--h-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.hp-nl__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.hp-nl__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hp-nl__input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: white;
  font-size: 0.9rem;
  font-family: var(--h-font-body);
  outline: none;
  color: var(--h-ink);
}

.hp-nl__btn {
  padding: 16px 28px;
  background: var(--h-gold);
  color: var(--h-ink);
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--h-font-body);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.hp-nl__btn:hover { background: var(--h-gold-l); }

.hp-nl__disclaimer {
  margin-top: 14px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* ── Event Strip ─────────────────────────────────────────────── */
.hp-events {
  background: white;
  padding: 40px 40px;
  border-bottom: 1px solid #f0ebe3;
}

.hp-events__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0;
}

.hp-events__track::-webkit-scrollbar { display: none; }

.hp-event-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--h-warm);
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.hp-event-pill:hover {
  background: white;
  border-color: var(--h-gold);
  transform: translateY(-2px);
}

.hp-event-pill img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.hp-event-pill span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--h-ink);
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-triggered reveals */
.hp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s;
}

.hp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-reveal:nth-child(2) { transition-delay: 0.1s; }
.hp-reveal:nth-child(3) { transition-delay: 0.2s; }
.hp-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hp-hero__content { grid-template-columns: 1fr; }
  .hp-hero__card { display: none; }
  .hp-products__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-trust__grid { grid-template-columns: repeat(3, 1fr); }
  .hp-hiw__steps { grid-template-columns: repeat(2, 1fr); }
  .hp-hiw__steps::before { display: none; }
  .hp-promo { grid-template-columns: 1fr; }
  .hp-promo__visual { height: 300px; }
}

@media (max-width: 768px) {
  .hp-section { padding: 60px 20px; }
  .hp-hero__content { padding: 100px 20px 60px; }
  .hp-cats__grid { grid-template-columns: 1fr 1fr; }
  .hp-cats__grid .cat-card:first-child { grid-column: span 2; }
  .hp-videos__grid { grid-template-columns: 1fr; }
  .hp-videos__grid .video-card:first-child { grid-column: span 1; }
  .hp-products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hp-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-hiw__steps { grid-template-columns: 1fr; }
  .hp-banner-strip { display: none; }
}
