/* ============================================================
   HOME PAGE — hero, collection preview, story teaser
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-black);
  overflow: hidden;
  padding-top: 80px;
}

.hero__lifestyle-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__lifestyle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* Art Deco fans */
.hero__fan {
  position: absolute;
  width: 260px;
  height: 260px;
  z-index: 1;
  pointer-events: none;
}

.hero__fan--bl {
  bottom: 0;
  left: 0;
}

.hero__fan--tr {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-8);
  min-height: calc(100vh - 80px);
}

.hero__content {
  padding-block: var(--space-12);
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--color-ivory);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.hero__tagline {
  font-family: var(--font-display-alt);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--color-ivory-soft);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-3);
}

.hero__gold-rule {
  width: 100px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero__brand-line {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.hero__cta-group {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-8);
}

.hero__bottle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottle placeholder base */
.bottle-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-placeholder__img {
  max-height: 560px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(201, 168, 76, 0.12)) drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  transition: filter var(--duration-slow) var(--ease-luxury);
}

.hero__bottle:hover .bottle-placeholder__img {
  filter: drop-shadow(0 40px 100px rgba(201, 168, 76, 0.22)) drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-text-muted);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 24px;
  height: 14px;
}

.hero__scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 400;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   COLLECTION PREVIEW (homepage)
   ============================================================ */

.collection {
  padding-block: var(--space-16);
  background: var(--color-black);
}

.collection__header {
  text-align: center;
  margin-bottom: var(--space-8);
  padding-inline: var(--space-6);
}

.collection__headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-ivory);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-3);
}

.collection__subline {
  font-family: var(--font-display-alt);
  font-size: var(--text-md);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

/* Product Card */
.product-card {
  background: var(--color-black-soft);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: border-color 300ms var(--ease-luxury), box-shadow 300ms var(--ease-luxury);
}

.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
}

.product-card__badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--color-border-full);
  color: var(--color-gold);
  background: transparent;
}

.product-card__badge--soon {
  border-color: rgba(245, 240, 232, 0.2);
  color: var(--color-text-muted);
}

@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.product-card__badge--shimmer {
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 40%,
    #fff8e0 50%,
    var(--color-gold-light) 60%,
    var(--color-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-gold);
  animation: shimmerGold 3s linear infinite;
  border-color: var(--color-gold);
}

.product-card__bottle {
  height: 220px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.product-card__bottle img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.7));
}

/* CSS bottle placeholders for non-available products */
.bottle-css {
  width: 80px;
  height: 200px;
  position: relative;
}

.bottle-css::after {
  content: 'GATSBY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--font-body);
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.bottle-css--pink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #c86090 0%, #5a1535 100%);
  clip-path: polygon(28% 0%, 72% 0%, 85% 8%, 88% 20%, 88% 85%, 83% 95%, 50% 100%, 17% 95%, 12% 85%, 12% 20%, 15% 8%);
}

.bottle-css--black::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
  clip-path: polygon(28% 0%, 72% 0%, 85% 8%, 88% 20%, 88% 85%, 83% 95%, 50% 100%, 17% 95%, 12% 85%, 12% 20%, 15% 8%);
}

.bottle-css--amber::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #c8901a 0%, #7a4a08 100%);
  clip-path: polygon(28% 0%, 72% 0%, 85% 8%, 88% 20%, 88% 85%, 83% 95%, 50% 100%, 17% 95%, 12% 85%, 12% 20%, 15% 8%);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-ivory);
  text-align: center;
  margin-bottom: var(--space-1);
}

.product-card__sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-muted);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.product-card__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.product-card__cta--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(245, 240, 232, 0.2);
  color: var(--color-text-muted);
}

/* ============================================================
   STORY TEASER (homepage)
   ============================================================ */

.story-teaser {
  position: relative;
  background: var(--color-black-soft);
  overflow: hidden;
  padding-block: var(--space-16);
}

.story-teaser__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.story-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  user-select: none;
}

.story-teaser__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-inline: var(--space-6);
  text-align: center;
}

.story-teaser__headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-ivory);
  line-height: var(--leading-tight);
  margin: var(--space-2) 0 var(--space-4);
}

.story-teaser__body {
  font-family: var(--font-display-alt);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--color-ivory-soft);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.story-teaser__manifesto {
  font-family: var(--font-display-alt);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */

@media (max-width: 960px) {

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-3);
    min-height: auto;
    padding-block: var(--space-4);
  }

  .hero__visual {
    order: -1;
    padding-block: var(--space-2);
  }

  .bottle-placeholder__img {
    max-height: 280px;
  }

  .hero__content {
    padding-block: var(--space-2);
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__gold-rule {
    margin: var(--space-2) auto;
  }

  .hero__tagline {
    font-size: var(--text-base);
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero__inner {
    gap: var(--space-2);
    padding-inline: var(--space-4);
  }

  .bottle-placeholder__img {
    max-height: 220px;
  }

  .hero__headline {
    font-size: clamp(2rem, 9vw, 2.75rem);
    margin-bottom: var(--space-2);
  }

  .hero__tagline {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    line-height: 1.6;
  }

  .hero__eyebrow {
    margin-bottom: var(--space-1);
    font-size: 0.75rem;
  }

  .hero__brand-line {
    margin-bottom: var(--space-3);
    font-size: 0.7rem;
  }

  .hero__gold-rule {
    margin-bottom: var(--space-2);
  }

  .hero__scroll-hint {
    display: none;
  }

  .collection__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero__fan {
    width: 120px;
    height: 120px;
  }

}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {

  .hero__headline {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .bottle-placeholder__img {
    max-height: 180px;
  }

  .hero__tagline br {
    display: none;
  }

  .hero__fan {
    display: none;
  }

}
