/* ===================== Hero ===================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-poster-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video { z-index: 2; }
.hero-poster-img { z-index: 1; }

.hero-video.is-active ~ .hero-poster-img { opacity: 0; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(13, 31, 23, 0.62) 0%, rgba(13, 31, 23, 0.34) 32%, rgba(13, 31, 23, 0) 66%),
    linear-gradient(0deg, rgba(13, 31, 23, 0.45) 0%, rgba(13, 31, 23, 0) 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 640px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}

.hero-content.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .eyebrow { color: var(--gold-light); }

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.25em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 1.8em;
}

.hero-play-toggle {
  position: absolute;
  z-index: 5;
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 230, 0.6);
  background: rgba(13, 31, 23, 0.45);
  backdrop-filter: blur(6px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.hero-play-toggle:hover { background: rgba(201, 162, 75, 0.35); transform: scale(1.05); }

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
}
.scroll-cue::after {
  content: '';
  position: absolute;
  top: 0; left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: cue-drop 2.2s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { top: 0; opacity: 1; }
  80% { opacity: 0.4; }
  100% { top: 40px; opacity: 0; }
}

/* ===================== Brand story teaser ===================== */

.story-teaser {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--marble);
}

.story-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.story-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, var(--forest-light), var(--forest-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image svg { width: 34%; opacity: 0.8; color: var(--gold-light); }
.story-image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--gold-light);
  opacity: 0.35;
  margin: 14px;
}

.story-copy p { font-size: 1.05rem; color: var(--text-muted-light); max-width: 46ch; }
.story-copy .btn { margin-top: 0.5rem; }

/* ===================== Featured collection ===================== */

.featured {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--bg-dark);
  background: var(--forest-deep);
}

.featured .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.featured .section-head h2 { color: var(--cream); margin: 0; }
.featured .section-head a { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid transparent; transition: border-color var(--dur-fast); }
.featured .section-head a:hover { border-color: var(--gold-light); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.product-card {
  display: block;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.product-card:hover, .product-card:focus-visible { border-color: var(--gold-light); transform: translateY(-4px); }

.product-card .thumb {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: transform var(--dur-slow) var(--ease-out);
}
.product-card:hover .thumb, .product-card:focus-visible .thumb { transform: scale(1.045); }
.product-card .thumb svg { width: 32%; }

.product-card .meta { padding: 1rem 0.2rem 0; }
.product-card .meta .p-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--cream); margin-bottom: 0.2em; }
.product-card .meta .p-price { font-size: 0.85rem; color: var(--gold-light); letter-spacing: 0.04em; }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .story-teaser .container { grid-template-columns: 1fr; }
  .story-image { order: -1; }
}

/* ===================== Social proof ===================== */

.social-proof {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--marble);
  text-align: center;
}
.social-proof .insta-handle {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--border-hairline-light);
  padding: 0.7em 1.6em;
  border-radius: 999px;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.social-proof .insta-handle:hover { background: var(--gold-deep); color: var(--cream); }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
}
.quote-card { position: relative; padding-top: 1.5rem; }
.quote-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -1rem; left: -0.15rem;
  line-height: 1;
}
.quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-on-light);
}
.quote-card cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-muted-light); }

@media (max-width: 860px) {
  .quotes { grid-template-columns: 1fr; gap: 2.5rem; }
}
