/* ─── HERO ───────────────────────────────────────────── */
.bpc-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bpc-hero__bg {
  position: absolute;
  inset: 0;
}

.bpc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bpc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 34, 28, 0.88) 0%,
    rgba(28, 34, 28, 0.3) 50%,
    rgba(28, 34, 28, 0.05) 100%
  );
}

.bpc-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 7% 8%;
  max-width: 680px;
}

.bpc-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 0.8rem 0 1.4rem;
}

.bpc-hero__title em {
  font-style: italic;
  color: #f4b8c1; /* rose blush — thematic for love */
}

.bpc-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
  margin-bottom: 2.2rem;
}

/* ─── ARTICLE ────────────────────────────────────────── */
.bpc-article {
  background: var(--cream);
}

.bpc-article__inner {
  max-width: 780px;
  margin: 0 auto;
}

.bpc-article__lead p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.bpc-article__prose p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.bpc-article__prose em {
  color: var(--sage-dark);
  font-style: italic;
}

/* ─── PRODUCTS ───────────────────────────────────────── */
.bpc-products {
  padding-bottom: 5rem;
}

.bpc-product-block {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.bpc-product-block__header {
  margin-bottom: 1.5rem;
  padding-left: 1.1rem;
  border-left: 3px solid #f4b8c1;
}

.bpc-product-block__name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.bpc-product-block__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Default: 3 col grid */
.bpc-product-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* 2-col variant */
.bpc-product-block__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
}

/* 5-col variant */
.bpc-product-block__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.bpc-product-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bpc-product-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
  background: var(--stone);
  transition: transform 0.4s var(--ease);
}

.bpc-product-item:hover img {
  transform: scale(1.04);
}

.bpc-product-item span {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ─── BEHIND THE SCENE ───────────────────────────────── */
.bpc-behind {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 7% 3rem;
}

.bpc-behind__img {
  border-radius: var(--r-xl);
  overflow: hidden;
}

.bpc-behind__img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ─── LOVE CONFESSION ────────────────────────────────── */
.bpc-confession {
  background: var(--cream);
}

.bpc-confession__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bpc-confession__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fce7ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bpc-confession__icon svg {
  width: 28px;
  height: 28px;
  stroke: #d1546a;
  fill: none;
  stroke-width: 1.6;
}

.bpc-confession__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 0.5rem 0 1.2rem;
}

.bpc-confession__title em {
  font-style: italic;
  color: #d1546a;
}

.bpc-confession__desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}

.bpc-confession__desc strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* Confession button — rose themed */
.btn-confession {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  background: #d1546a;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-confession svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s var(--ease);
}

.btn-confession:hover {
  background: #b8405a;
  transform: translateY(-1px);
}

.btn-confession:hover svg {
  transform: translateX(3px);
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.bpc-cta {
  text-align: center;
}

.bpc-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.bpc-cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin: 0.8rem 0 1rem;
}

.bpc-cta__title em {
  font-style: italic;
  color: #f4b8c1;
}

.bpc-cta__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.bpc-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .bpc-product-block__grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .bpc-product-block__grid,
  .bpc-product-block__grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bpc-product-block__grid--2 {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .bpc-behind {
    padding: 0 5% 2.5rem;
  }
}

@media (max-width: 480px) {
  .bpc-product-block__grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.floating-about {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4f6f52; /* bisa sesuaikan */
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-about:hover {
  background-color: #3b5440;
  transform: translateY(-3px);
}
/* =========================
   NAVBAR BASE
========================= */
.nav {
  position: fixed;
}

.nav__right {
  position: relative; /* penting buat anchor dropdown */
}
/* DESKTOP MENU */
.nav__links {
  display: flex;
  gap: 2.5rem;
}

/* HAMBURGER DEFAULT (HIDDEN DI DESKTOP) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* =========================
   MOBILE MENU (FLOATING)
========================= */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 220px;

  background: #2f3e34;
  border-radius: 16px;
  padding: 1.5rem;

  display: flex;
  flex-direction: column;
  gap: 1.2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: all 0.25s ease;

  z-index: 2000;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* =========================
   MENU LINKS
========================= */
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: 0.2s;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

/* =========================
   CLOSE BUTTON
========================= */
.mobile-menu__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
