/* ═══════════════════════════════════════════════════════════
   FRONT PAGE – Premium storefront
   ═══════════════════════════════════════════════════════════ */

.front-page { overflow-x: hidden; }

/* Transparent header on front page */
.home .site-header {
  position: fixed;
  width: 100%;
  left: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
  border-bottom: none;
  backdrop-filter: none;
}
.home .site-header.header-scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.home .site-title {
  color: #fff;
  transition: color 0.4s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.home .header-scrolled .site-title { color: var(--color-text); text-shadow: none; }
.home .cart-link { color: #fff; opacity: 0.9; transition: color 0.4s, opacity 0.4s; }
.home .header-scrolled .cart-link { color: var(--color-text); opacity: 0.6; }
.home .nav-menu a {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  transition: color 0.4s, text-shadow 0.4s;
}
.home .header-scrolled .nav-menu a { color: var(--color-muted); text-shadow: none; }

/* ─── HERO ─────────────────────────────────────────────────── */

.fp-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.fp-hero__video-wrap {
  position: absolute;
  inset: 0;
}

.fp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.fp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.fp-hero__logo {
  width: clamp(260px, 40vw, 400px);
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.3));
}

.fp-hero__monogram {
  width: 36px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.fp-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.fp-hero__title {
  font-family: var(--font-editorial);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.fp-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.fp-hero__cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 1rem 2.5rem;
}
.fp-hero__cta:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.fp-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  animation: gentle-bounce 3s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════════════════
   2. INTRO – editorial light section, breaks the dark hero rhythm
   ═══════════════════════════════════════════════════════════ */

.fp-intro {
  background: var(--color-bg);
  padding: clamp(5rem, 10vw, 9rem) 2rem;
}

.fp-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.fp-intro__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.fp-intro__title {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.fp-intro__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   3. FEATURED COLLECTION – single fullscreen, namesake category
   ═══════════════════════════════════════════════════════════ */

.fp-featured {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

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

.fp-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 100%);
}

.fp-featured__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 0 clamp(2rem, 6vw, 8rem);
  color: #fff;
}

.fp-featured__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}

.fp-featured__title {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 25px rgba(0,0,0,0.4);
  margin-bottom: 1.25rem;
}

.fp-featured__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.fp-featured__cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.fp-featured__cta:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   4. COLLECTIONS GRID – 4 remaining categories, light bg
   ═══════════════════════════════════════════════════════════ */

.fp-collections {
  background: var(--color-bg);
  padding: clamp(5rem, 10vw, 9rem) 2rem;
}

.fp-collections__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.fp-collections__title {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.fp-collections__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fp-col-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fp-col-card:hover { transform: translateY(-4px); }

.fp-col-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0ede8;
}
.fp-col-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fp-col-card:hover .fp-col-card__media img { transform: scale(1.04); }

.fp-col-card__content {
  padding: 1.75rem 0.25rem;
}

.fp-col-card__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fp-col-card__desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.fp-col-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: gap 0.3s;
}
.fp-col-card:hover .fp-col-card__link { gap: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   5. STORY + TRUST – integrated, light, editorial
   ═══════════════════════════════════════════════════════════ */

.fp-story {
  background: #f5f3ef;
  padding: clamp(5rem, 10vw, 9rem) 2rem;
}

.fp-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.fp-story__title {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.fp-story__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.8;
}

.fp-story__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
}

.fp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text);
}
.fp-trust-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════════
   LEGACY: old fp-category (kept for fallback)
   ═══════════════════════════════════════════════════════════ */

/* ─── CATEGORY SECTIONS – cinematic fullscreen ────────────── */

.fp-category {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fp-category__media {
  position: absolute;
  inset: 0;
}

.fp-category__video,
.fp-category__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fp-category__overlay {
  position: absolute;
  inset: 0;
}

.fp-category__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 450px;
  padding: 0 clamp(2rem, 6vw, 8rem);
}

/* Alternate left/right positioning */
.fp-category--left .fp-category__content {
  margin-right: auto;
}
.fp-category--right .fp-category__content {
  margin-left: auto;
}

.fp-category__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.fp-category__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.fp-category__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.fp-category__cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.fp-category__cta:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* ─── TRUST ────────────────────────────────────────────────── */

.fp-trust {
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-border);
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 768px) {
  .fp-hero__content { padding: 1.5rem; }

  /* Intro */
  .fp-intro { padding: 4rem 1.5rem; }
  .fp-intro__title { font-size: 1.65rem; }

  /* Featured */
  .fp-featured { height: 75vh; min-height: 480px; }
  .fp-featured__content { padding: 0 1.5rem; max-width: 100%; }
  .fp-featured__title { font-size: 2rem; }
  .fp-featured__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%) !important;
  }

  /* Collections grid → single column on mobile */
  .fp-collections { padding: 4rem 1.25rem; }
  .fp-collections__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fp-col-card__title { font-size: 1.25rem; }

  /* Story → stack vertically */
  .fp-story { padding: 4rem 1.5rem; }
  .fp-story__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fp-story__title { font-size: 1.6rem; }
  .fp-story__trust {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .fp-category {
    height: 70vh;
    min-height: 400px;
  }

  .fp-category__content {
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .fp-category__title { font-size: 1.8rem; }

  /* On mobile, always left-align */
  .fp-category--right .fp-category__content {
    margin-left: 0;
  }
  .fp-category--right .fp-category__overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%) !important;
  }
}

/* ═══ Contact / legal strip – discreet, above footer ═══ */
.fp-contact {
  padding: 4rem 2rem 3rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-sans);
  color: var(--color-muted);
}

.fp-contact__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.fp-contact__col p {
  margin: 0.35rem 0;
  font-size: 0.85rem;
  line-height: 1.55;
}

.fp-contact__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.8rem !important;
  font-weight: 500;
}

.fp-contact__company {
  color: var(--color-text);
  font-weight: 500;
}

.fp-contact__col a {
  color: var(--color-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.fp-contact__col a:hover {
  border-bottom-color: var(--color-muted);
}

.fp-contact__links {
  margin-top: 0.75rem !important;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .fp-contact {
    padding: 2.5rem 1.5rem 2rem;
  }
  .fp-contact__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
