/* ═══════════════════════════════════════════════════════
   IVAN.BAR — Homepage Styles
   ═══════════════════════════════════════════════════════ */

/* ─── Hero ─── */
#hero {
  background: radial-gradient(circle at 15% 30%, var(--color-surface) 0%, var(--color-background) 70%);
}

.hero {
  min-height: calc(85vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-16) 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-7xl);
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__tagline em {
  font-style: normal;
  color: var(--color-brand-red);
}

.hero__desc {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 440px;
  line-height: var(--leading-relaxed);
}

.hero__badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  max-height: 520px;
  width: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--space-8) 0 var(--space-12);
    text-align: center;
  }
  .hero__tagline { font-size: var(--text-5xl); }
  .hero__desc { margin: 0 auto; }
  .hero__badges { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; }
  .hero__image img { max-height: 320px; }
}

/* ─── Promo Ribbon ─── */
.promo-ribbon {
  background: var(--color-brand-red);
  color: white;
  text-align: center;
  padding: var(--space-3) var(--gutter);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
}

.promo-ribbon a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Products Section ─── */
.products-section .product-card__image {
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-alt);
}

.products-section .product-card__image img {
  width: 85%;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
}

/* ─── Story Preview ─── */
.story-preview__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-preview__image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.story-preview__signature {
  width: 160px;
  margin-top: var(--space-6);
  opacity: 0.9;
  filter: brightness(0) invert(1);
  border-radius: 0;
}

.section--coral .story-preview__signature {
  filter: brightness(0) invert(1);
}

.story-preview__quote {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-style: italic;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-6);
  color: white;
}

.story-preview__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
}

/* ─── CTA Band ─── */
.cta-band {
  text-align: center;
  padding: var(--space-20) 0;
  background: radial-gradient(circle at center, var(--color-surface) 0%, var(--color-surface-alt) 100%);
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  color: var(--color-dark);
  margin-bottom: var(--space-8);
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .cta-band__title { font-size: var(--text-4xl); }
}
