/* ── ANNOTATION BADGES ── */
.annotation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,107,59,0.12);
  border: 1px solid rgba(198,107,59,0.4);
  color: var(--terracotta);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 16px;
}

.annotation::before {
  content: "↑";
  font-size: 13px;
}

/* ── HERO ── */
.hero {
  height: 88vh;
  min-height: 480px;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-carousel { position: absolute; inset: 0; overflow: hidden; }

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active { opacity: 1; }
.carousel-slide-1 { background-position: center; background-size: 100% auto; background-repeat: no-repeat; }
.carousel-slide-2 { background-position: center; background-size: 100% auto; background-repeat: no-repeat; }
.carousel-slide-3 { background: linear-gradient(160deg, #E8DCC8 0%, #D4C2A8 50%, #C9B495 100%); }
.carousel-slide-4 { background: linear-gradient(160deg, #E2D5BC 0%, #CFC0A0 50%, #C4AD88 100%); }

.carousel-label {
  position: absolute;
  bottom: 28px;
  left: 48px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(62,39,35,0.3);
}

.carousel-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(62,39,35,0.25);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active { background: var(--terracotta); transform: scale(1.3); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: 1.5px solid rgba(62,39,35,0.3);
  color: var(--brown);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
}

.carousel-arrow:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.carousel-arrow.prev { left: 40px; }
.carousel-arrow.next { right: 40px; }

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--brown);
  max-width: 680px;
  margin: 0 auto 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  padding: 14px 44px;
  background: var(--brown);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  font-weight: 400;
}

.hero-cta:hover { background: var(--terracotta); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--terracotta);
  opacity: 0.5;
}

/* ── PRODUCT GRID ── */
.products {
  padding: 100px 80px;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.product-card { cursor: pointer; }

.product-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image { transform: scale(1.02); }

.product-placeholder {
  width: 80px;
  height: 80px;
  border: 1.5px dashed rgba(62,39,35,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,39,35,0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-hover-overlay { opacity: 1; }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
}

/* ── STORY / HERITAGE ── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

.story-image {
  background: linear-gradient(160deg, #D4C2A8 0%, #C0A888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-image-placeholder {
  width: 120px;
  height: 120px;
  border: 1.5px dashed rgba(62,39,35,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--brown);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
  opacity: 0.6;
}

.story-text {
  background: var(--brown);
  color: var(--cream);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-text .section-eyebrow { color: var(--terracotta); }

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
}

.story-text p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245,239,230,0.8);
  margin-bottom: 16px;
}

.story-cta {
  display: inline-block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 3px;
}

/* ── WHOLESALE STRIP ── */
.wholesale {
  background: var(--cream-dark);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.wholesale-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wholesale-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.wholesale-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.5px;
}

.wholesale-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CONTACT CTA ── */
.contact {
  padding: 120px 80px;
  text-align: center;
  background: var(--cream);
}

.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.contact-cta {
  display: inline-block;
  padding: 16px 52px;
  background: var(--terracotta);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.contact-cta:hover { background: #B55A2C; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .placement-note { font-size: 10px; padding: 5px 12px; }

  .hero { height: auto; min-height: 70vh; padding: 60px 24px 80px; }

  .hero-content { padding: 0 8px; }

  .hero-headline { font-size: 36px; max-width: 100%; }

  .hero-sub { font-size: 14px; }

  .hero-cta { padding: 12px 32px; }

  .carousel-dots { bottom: 24px; }

  .products { padding: 60px 24px; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story { grid-template-columns: 1fr; }

  .story-image { height: 260px; }

  .story-text { padding: 52px 32px; }

  .story-text h2 { font-size: 36px; }

  .wholesale {
    grid-template-columns: 1fr;
    padding: 52px 32px;
    gap: 40px;
  }

  .contact { padding: 72px 24px; }

  .contact h2 { font-size: 38px; }
}
