/* ==========================================================================
   STYLE CSS - HKK LANDING PAGE
   Full Section Styling (Dark Mode & Gold Luxury Aesthetics)
   ========================================================================== */

/* ==========================================================================
   01. SITE HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 13, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* 1. Sát lề trái: Sản phẩm, Cách sử dụng */
.header-nav-left {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}

/* 2. Logo chính giữa: Ảnh logo HKK */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo-img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header-logo:hover .header-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

/* 3. Sát lề phải: Bảo chứng, Ưu đãi, Đăng ký hợp tác */
.header-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.header-nav-right {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-manrope, "Manrope", sans-serif);
  font-size: 14px;
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 4px;
  position: relative;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* =========================================================
   MOBILE / TABLET NAVIGATION (Figma: HKK Navigation / Workspace)
   ========================================================= */

/* --- Desktop nav wrapper (visible on desktop only) --- */
.desktop-nav {
  display: flex;
}

/* --- Mobile Header Bar (hidden on desktop) --- */
.mobile-header-bar {
  display: none;
}

/* =========================================================
   01-M. MOBILE / TABLET FLOATING NAVBAR (Figma: State=Scrolled)
   Pill Capsule: bg #E8EFEC | stroke 1px #9CA8A2 | radius 24px
   Height: 72px | Padding: 16px 24px | Shadow: 0 18px 48px -14px rgba(0,0,0,0.22)
   3 Columns: CTA Partner (left) | Logo (center) | Menu Toggle (right)
   ========================================================= */
.mobile-header-bar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  max-width: 760px;
  height: 72px;
  margin: 0 auto;
  background-color: #e8efec;
  border: 1px solid #9ca8a2;
  border-radius: 24px;
  padding: 0 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 48px -14px rgba(0, 0, 0, 0.22);
  z-index: 1001;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Col 1: CTA Partner (left) */
.mob-nav-cta {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #0a0d0f;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  flex: 1;
  text-align: left;
}

.mob-nav-cta:hover {
  opacity: 0.7;
}

/* Col 2: Brand Logo (center) */
.mob-nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mob-nav-logo-img {
  height: 36px;
  width: auto;
  max-width: 86px;
  object-fit: contain;
  filter: brightness(0);
  transition: transform 0.2s ease;
}

/* Col 3: Menu Toggle (right) */
.mob-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mob-menu-label {
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #0a0d0f;
  text-transform: uppercase;
}

.mob-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* =========================================================
   01-P. MOBILE MENU PANEL (Figma: State=Menu Open)
   Floating card modal: bg #E8EFEC | stroke 1px #9CA8A2 | radius 32px
   Shadow: 0 18px 48px -14px rgba(0,0,0,0.22)
   Padding: 48px (tablet) / 32px 20px (mobile)
   ========================================================= */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(10, 13, 15, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    visibility 0.35s linear;
}

.mobile-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 99999;
}

.mob-panel-container {
  width: 100%;
  max-width: 960px;
  max-height: calc(100dvh - 32px);
  background-color: #e8efec;
  border: 1px solid #9ca8a2;
  border-radius: 32px;
  box-shadow: 0 18px 48px -14px rgba(0, 0, 0, 0.22);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-panel.is-open .mob-panel-container {
  transform: translateY(0) scale(1);
}

/* 1. Panel Header */
.mob-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  flex-shrink: 0;
}

.mob-panel-header-cta {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #0a0d0f;
  text-decoration: none;
  text-transform: uppercase;
  flex: 1;
  text-align: left;
}

.mob-panel-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mob-panel-brand .mob-panel-logo-img {
  height: 44px;
  width: auto;
  max-width: 104px;
  object-fit: contain;
  filter: brightness(0);
}

.mob-panel-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mob-close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* 2. Main Nav Links: EB Garamond 64px in Figma */
.mob-panel-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.mob-panel-link {
  text-decoration: none;
  display: block;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mob-panel-link .mob-link-text {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #0a0d0f;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.mob-panel-link:hover .mob-link-text {
  color: var(--color-gold-dark, #a9965b);
  transform: translateX(8px);
}

/* 3. Panel Footer CTA: Black block radius 24px */
.mob-panel-footer {
  flex-shrink: 0;
  margin-top: 24px;
}

.mob-panel-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  background-color: #0a0d0f;
  color: #ffffff;
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 24px;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.mob-panel-footer-cta:hover {
  background-color: #1a2128;
  transform: translateY(-2px);
}

/* =========================================================
   01-C. MOB CAROUSEL LABEL (mobile-only, hidden on desktop)
   Figma: "KHÁM PHÁ 4 PHIÊN BẢN" | EB Garamond 600 11px | #8B5E3B
   ========================================================= */
.mob-carousel-label {
  display: none; /* shown via responsive.css on mobile */
  font-family: "EB Garamond", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b5e3b;
  margin-bottom: 14px;
}

/* Carousel viewport wrapper (desktop = transparent passthrough) */
.mob-carousel-viewport {
  /* no special styles on desktop — grid lays out normally */
}

/* ==========================================================================
   02. HERO SECTION — Fullscreen Background Slider
   ========================================================================== */

/* --- Section Container --- */
.sec-hero.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* --- Background Slider --- */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 13, 15, 0.3) 0%,
    rgba(10, 13, 15, 0.45) 50%,
    rgba(10, 13, 15, 0.7) 100%
  );
}

/* --- Content Layer (on top of slider) --- */
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100vh;
  padding-top: var(--header-height);
  align-items: center;
}

/* Phần 1: Typography chính giữa */
.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
  grid-row: 1;
  grid-column: 1;
  margin-top: -60px;
  width: 100%;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 92px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-white);
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
  margin: 0 0 20px;
}

.hero-title-sub {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin: 0 0 12px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin: 0;
}

/* Phần 2: Góc dưới bên phải */
.hero-bottom-right {
  position: absolute;
  right: 38px;
  bottom: 123px;
  z-index: 3;
}

.hero-explore-link {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
}

.hero-explore-link:hover {
  color: var(--color-gold-light);
}

.explore-text {
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.explore-line {
  display: block;
  width: 282px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}

.hero-explore-link:hover .explore-line {
  width: 120px;
}

/* --- Slide Navigation --- */
.hero-slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.hero-nav-arrow:hover {
  background: rgba(201, 183, 126, 0.25);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hero-nav-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-gold);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   03. SECTION 2: GRAN PRO
   ========================================================================= */
.sec-granpro {
  position: relative;
  background: url("../assets/images/banner/banner-granpro.png") center center /
    cover no-repeat;
  overflow: hidden;
  min-height: 680px;
  padding-bottom: 72px;
}

/* Dark overlay on background */
.sec-granpro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.6);
  z-index: 0;
}

/* Watermark text strip */
.granpro-watermark-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  padding: 18px 48px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.granpro-watermark-strip span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.06em;
  white-space: nowrap;
  user-select: none;
}

/* Main 2-column layout */
.granpro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 640px;
  padding-top: 72px;
  padding-bottom: 0;
}

/* Đường line vàng ở đầu container */
.granpro-top-line {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  opacity: 0.85;
  margin-bottom: 47px;
}

/* --- Left: Content (Nằm đè nhẹ lên cột phải) --- */
.granpro-content {
  position: relative;
  z-index: 3;
  padding-bottom: 56px;
  margin-right: -100px;
}

.granpro-title {
  margin: 0 0 28px;
  line-height: 1.08;
}

.granpro-title-line1 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 600;
  font-style: normal;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.granpro-title-line2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
  letter-spacing: 0.01em;
  margin-top: 2px;
  margin-left: 20px;
}

.granpro-desc {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 450px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-granpro-cta {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
  background: rgba(10, 13, 15, 0.6);
  backdrop-filter: blur(4px);
}

.btn-granpro-cta:hover {
  border-color: var(--color-gold-light);
  color: #0a0d0f;
  background: var(--color-gold);
  box-shadow: 0 4px 20px rgba(201, 183, 126, 0.35);
}

/* --- Right: Arch Visual (Tăng kích cỡ, đỉnh ngang hàng với Gran Pro) --- */
.granpro-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;

  width: 100%;
  margin-top: 20%;
}

/* The arch frame — vòm rộng đỉnh ngang bằng dòng Gran Pro */
.granpro-arch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  border: 1.5px solid rgba(201, 183, 126, 0.45);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(20, 24, 28, 0.5) 0%,
    rgba(8, 8, 8, 0.75) 100%
  );
}

/* Product image always contained inside arch */
.granpro-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* ==========================================================================
   04. SECTION 3: HERB ZYME 113 BRAND INTRO (Light Ivory Theme #FCFCFA)
   ========================================================================= */
.sec-story-intro {
  padding: 100px 0;
  background-color: #fcfcfa;
  color: #0a0d0f;
}

.story-intro-header {
  margin-bottom: 48px;
}

.story-intro-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 88px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.2px;
  color: #0a0d0f;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.story-intro-desc {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 52px;
  font-weight: 500;
  font-style: italic;
  line-height: 56px;
  letter-spacing: -0.5px;
  color: #9ca8a2;
  margin: 0;
}

.story-intro-grid {
  display: grid;
  grid-template-columns: 800px 488px;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

.story-card-main {
  background: #efece6;
  border-radius: 28px;
  overflow: hidden;
  height: 690px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.story-img-main-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.story-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-cards-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 690px;
  justify-content: space-between;
}

.story-card-sub {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #9ca8a2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 335px;
  box-sizing: border-box;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.story-card-sub:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold, #c9b77e);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.story-sub-img-box {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.story-sub-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.story-sub-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
}

.story-sub-price {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.2px;
  color: #0a0d0f;
  margin: 0;
}

.story-sub-label {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.2px;
  color: #0a0d0f;
  margin: 0;
}

/* ==========================================================================
   05. SECTION 4: 4-PRODUCT LINEUP GRID (Light Gradient Theme)
   ========================================================================== */
.sec-lineup {
  padding: 80px 0 126px;
  background: linear-gradient(180deg, #fdfdfb 0%, #f8f9f6 58%, #f2f1ec 100%);
  position: relative;
}

.lineup-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1284px;
  margin: 0 auto;
}

.lineup-card {
  height: 864px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  cursor: pointer;
}

.lineup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Variant Backgrounds */
.lineup-card.variant-plain {
  background-color: #e3e8cf;
}

.lineup-card.variant-orax {
  background-color: #f2d1d6;
}

.lineup-card.variant-ginger {
  background-color: #edc496;
}

.lineup-card.variant-hakko-black {
  background-color: #e3e8cf;
}

/* Card Media & Image */
.lineup-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.lineup-card-media picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lineup-card-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.lineup-card:hover .lineup-card-img {
  transform: translateX(-50%) scale(1.03);
}

/* Gradient Overlay per Variant (Exact Figma Color Stops) */
.lineup-card-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.lineup-card.variant-plain .lineup-card-gradient {
  background: linear-gradient(
    180deg,
    rgba(219, 227, 186, 0) 0%,
    rgba(219, 227, 186, 0.08) 54%,
    rgba(219, 227, 186, 0.52) 76%,
    rgba(219, 227, 186, 0.96) 100%
  );
}

.lineup-card.variant-orax .lineup-card-gradient {
  background: linear-gradient(
    180deg,
    rgba(240, 186, 196, 0) 0%,
    rgba(240, 186, 196, 0.08) 54%,
    rgba(240, 186, 196, 0.52) 76%,
    rgba(240, 186, 196, 0.96) 100%
  );
}

.lineup-card.variant-ginger .lineup-card-gradient {
  background: linear-gradient(
    180deg,
    rgba(232, 166, 97, 0) 0%,
    rgba(232, 166, 97, 0.08) 54%,
    rgba(232, 166, 97, 0.52) 76%,
    rgba(232, 166, 97, 0.96) 100%
  );
}

.lineup-card.variant-hakko-black .lineup-card-gradient {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.12) 54%,
    rgba(5, 5, 5, 0.72) 76%,
    rgba(5, 5, 5, 0.98) 100%
  );
}

/* Card Content Typography */
.lineup-card-content {
  position: relative;
  z-index: 3;
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lineup-product-name {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: -0.15px;
  color: #0a0d0f;
  margin: 0;
}

.lineup-variant-name {
  font-family: var(--font-display, "EB Garamond", serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 52px;
  letter-spacing: -0.6px;
  color: #0a0d0f;
  margin: 0;
}

/* Hakko Black Variant Typography overrides */
.lineup-card.variant-hakko-black .lineup-product-name {
  color: #d6cfbd;
}

.lineup-card.variant-hakko-black .lineup-variant-name {
  color: #f5e8c2;
}

/* ==========================================================================
   06. SECTION 5: HERB ZYME 113 STORY (Contour Background & Floating Bottles)
   ========================================================================== */
/* ==========================================================================
   06. SECTION 5: HERB ZYME 113 STORY (Contour Background & Floating Bottles)
   ========================================================================== */
.sec-story-detail {
  position: relative;
  min-height: 1093px;
  background-color: #fbfaf6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-detail-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.story-contour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-detail-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  min-height: 1093px;
  margin: 0 auto;
  padding: 160px 48px 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.story-detail-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-detail-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: clamp(64px, 9.8vw, 142px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -2.2px;
  color: #0a0d0f;
  margin-bottom: 32px;
}

.story-detail-lead {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.15px;
  color: #0a0d0f;
  max-width: 790px;
  margin: 0 auto 32px;
}

.story-detail-body {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 27px;
  font-style: italic;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: -0.2px;
  color: #0a0d0f;
  max-width: 680px;
  margin: 0 auto;
}

/* =========================================================
   MOBILE STORY LAYOUT — Figma: Mobile / Section 4 / Story
   Hidden on desktop, shown on mobile via responsive.css
   bg: #F3EFDB | pad: 44px 20px | gap: 20px between items
   ========================================================= */
.mob-story-layout {
  display: none; /* shown in responsive.css at ≤768px */
  flex-direction: column;
  gap: 20px;
  padding: 44px 20px;
  background-color: #f3efdb;
  width: 100%;
}

/* Title Row: "Herb Zyme" + "113" side by side, EB Garamond 43px */
.mob-story-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
}

.mob-story-title-main,
.mob-story-title-accent {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #090d0f;
  margin: 0;
}

/* Lead: EB Garamond 500 14px LEFT */
.mob-story-lead {
  font-family: "EB Garamond", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #090d0f;
  margin: 0;
}

/* Product Strip: 3 bottles 350×150px total, each ~110px wide */
.mob-story-product-strip {
  display: flex;
  flex-direction: row;
  gap: 8px; /* spacing between 3 bottles */
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.mob-story-bottle {
  flex: 1;
  height: 150px;
  overflow: hidden;
  position: relative;
  border-radius: 12px; /* bo góc từng ảnh */
}

.mob-story-bottle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Detail Body: EB Garamond 500 18px LEFT */
.mob-story-detail-body {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: #090d0f;
  margin: 0;
}

/* Floating Bottle Visuals (Positioned relative to 1440px container) */
.story-float-items {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.story-float-item {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px -10px rgba(31, 38, 33, 0.18);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-float-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.story-float-item.float-plain {
  top: 538px;
  left: 48px;
  width: 290px;
  height: 290px;
  transform: rotate(7deg);
  animation: floatPlain 7s ease-in-out infinite alternate;
}

.story-float-item.float-ginger {
  top: 35px;
  right: 38px;
  width: 262px;
  height: 340px;
  transform: rotate(-6deg);
  animation: floatGinger 8s ease-in-out infinite alternate-reverse;
}

.story-float-item.float-orax {
  top: 620px;
  right: 71px;
  width: 269px;
  height: 351px;
  transform: rotate(6deg);
  animation: floatOrax 6.5s ease-in-out infinite alternate;
}

@keyframes floatPlain {
  0% {
    transform: translateY(0) rotate(7deg);
  }
  100% {
    transform: translateY(-12px) rotate(5.5deg);
  }
}

@keyframes floatGinger {
  0% {
    transform: translateY(0) rotate(-6deg);
  }
  100% {
    transform: translateY(-12px) rotate(-7.5deg);
  }
}

@keyframes floatOrax {
  0% {
    transform: translateY(0) rotate(6deg);
  }
  100% {
    transform: translateY(-12px) rotate(4.5deg);
  }
}

/* ==========================================================================
   07. SECTION 6: USAGE GUIDE & 3 REGIMENS (Dark Gold Luxury Theme)
   ========================================================================== */
.sec-usage-guide {
  padding: 112px 0 120px;
  background-color: #040505;
  background-image: url("../assets/images/banner/pattern-bg-texture.png");
  background-repeat: repeat;
  color: #ffffff;
  border-top: 1px solid #c9b77e;
  position: relative;
}

.usage-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: flex-start;
}

.usage-main-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 88px;
  font-weight: 500;
  line-height: 1.05;
  color: #c9b77e;
  margin: 0;
}

.usage-main-title-2 {
  font-style: italic;
}

.usage-lead-text {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 32px;
}

.usage-lead-text strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.usage-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.usage-info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.usage-card-icon {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 4px;
}

.usage-card-title {
  font-family: var(--font-manrope);
  font-size: 20px;
  font-weight: 600;
  color: #c9b77e;
  margin: 0 0 8px;
}

.usage-card-desc {
  font-family: var(--font-manrope);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  margin: 0;
}

/* Notes Box (Exact Figma Layout) */
.usage-notes-box {
  background: #090b0b;
  border: 1px solid #b89959;
  padding: 40px 48px;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.usage-notes-header-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usage-notes-kicker {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.85px;
  color: #d4b86e;
  text-transform: uppercase;
}

.usage-notes-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
  color: #e8cc80;
  margin: 0;
}

.usage-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.usage-note-col {
  font-family: var(--font-manrope);
}

.usage-note-col p {
  font-family: var(--font-manrope);
  font-size: 17px;
  font-weight: 400;
  color: #ebe8db;
  line-height: 32px;
  margin-bottom: 12px;
}

.usage-note-col p:last-child {
  margin-bottom: 0;
}

/* Regimens Section */
.regimen-section-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.regimen-section-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  color: #e8cc80;
  margin: 0;
}

.regimen-section-desc {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #b8b8ad;
  max-width: 300px;
  margin: 0;
  text-align: right;
}

/* Regimens 2-Row Layout (Exact Figma Spacing & Contiguous Columns) */
.regimens-container {
  display: flex;
  flex-direction: column;
}

.mob-regimens-list {
  display: none;
}

.desktop-regimens-wrap {
  display: contents;
}

/* Row 1: 3 Contiguous Stat Cards (gap: 0) */
.regimens-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 24px;
}

.regimen-stat-card {
  background: linear-gradient(
    90deg,
    rgba(22, 26, 22, 0.96) 0%,
    rgba(12, 15, 13, 0.98) 56%,
    #060807 100%
  );
  border: 1.5px solid #d1b073;
  padding: 24px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 166px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.regimen-stat-card.featured-stat {
  background: linear-gradient(
    90deg,
    rgba(36, 13, 19, 0.92) 0%,
    rgba(17, 12, 11, 0.96) 56%,
    #070807 100%
  );
}

.regimen-stat-card:not(:first-child) {
  border-left: none;
}

.regimen-stat-card:hover {
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.regimen-stat-num {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 84px;
  font-weight: 500;
  line-height: 84px;
  letter-spacing: -1.2px;
  color: #e8d4a6;
  display: block;
}

.regimen-stat-name {
  font-family: var(--font-manrope);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.85px;
  color: #f5f0e0;
  text-transform: uppercase;
  margin: 0;
}

/* Row 2: 3 Contiguous Detail Cards (gap: 0) */
.regimens-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.regimen-detail-card {
  font-family: var(--font-manrope);
  background: #090b0b;
  border: 1px solid #b89959;
  padding: 30px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 272px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.regimen-detail-card:not(:first-child) {
  border-left: none;
}

.regimen-detail-card.featured-detail {
  background: #1f0b0d;
}

.regimen-detail-card:hover {
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.regimen-card-dose {
  font-family: var(--font-manrope);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #e8cc80;
  white-space: pre-line;
}

.regimen-card-dose small {
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.regimen-card-detail {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #e5e3d6;
  margin: 0;
}

/* ==========================================================================
   08. SECTION 7: IN-OUT BEAUTY FULL-WIDTH HERO BANNER
   ========================================================================= */
.sec-inout-beauty {
  position: relative;
  padding: 120px 0;
  background-color: #0e0a07;
  overflow: hidden;
  min-height: 534px;
  display: flex;
  align-items: center;
}

.inout-beauty-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inout-beauty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inout-beauty-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 10, 7, 0.95) 0%,
    rgba(14, 10, 7, 0.75) 60%,
    rgba(14, 10, 7, 0.4) 100%
  );
}

.inout-beauty-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.inout-beauty-kicker {
  font-family: var(--font-display, "EB Garamond", serif);
  font-style: italic;
  font-size: 29px;
  font-weight: 500;
  color: #e8d6b2;
  margin-bottom: 12px;
}

.inout-beauty-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 500;
  color: #f9f4e5;
  line-height: 1;
  margin-bottom: 24px;
}

.inout-beauty-rule {
  width: 78px;
  height: 1px;
  background: #d1b073;
  margin-bottom: 24px;
}

.inout-beauty-body {
  font-family: var(--font-manrope);
  font-size: 18px;
  line-height: 1.6;
  color: #f6f2e8;
  max-width: 650px;
  margin: 0;
}

/* ==========================================================================
   09. SECTION 8: PROOF BENTO (Global Recognition & Prestige)
   ========================================================================= */
.sec-proof-bento {
  padding: 100px 0;
  background-color: #0a0d0f;
  color: #ffffff;
}

.proof-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-bento-row {
  display: grid;
  gap: 20px;
}

.proof-bento-row-1 {
  grid-template-columns: 480fr 480fr 316fr;
}

.proof-bento-row-2 {
  grid-template-columns: 400fr 400fr 476fr;
}

.proof-carousel-viewport {
  display: contents;
}

.proof-tile {
  min-height: 390px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.proof-tile:hover {
  transform: translateY(-4px);
}

.proof-tile-intro {
  background: #e8e0d1;
  color: #1a1713;
  justify-content: space-between;
}

.proof-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.proof-tile-label {
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  color: #211f1a;
}

.proof-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #14130f;
  border: 1px solid #c9b77e;
  color: #c9b77e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.proof-tile-icon:hover {
  transform: scale(1.08) rotate(5deg);
  background: #1f1b13;
}

.proof-tile-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 48px;
  font-weight: 500;
  color: #1a1713;
  line-height: 1.1;
  margin: 16px 0;
}

.proof-tile-rule {
  width: 72px;
  height: 1px;
  background: #c9b77e;
  margin-bottom: 12px;
}

.proof-tile-brand {
  font-size: 13px;
  color: #211f1a;
  margin: 0;
}

.proof-tile-card {
  background: #0a0d0f;
  border: 1px solid #c9b77e;
  box-sizing: border-box;
  cursor: pointer;
}

.proof-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proof-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 6, 0.74) 0%,
    rgba(5, 6, 6, 0.12) 24%,
    rgba(5, 6, 6, 0.18) 56%,
    rgba(5, 6, 6, 0.94) 100%
  );
}

.proof-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
}

.proof-card-tag {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 600;
  color: #c9b77e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-card-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(4, 5, 5, 0.62);
  border: 1px solid #c9b77e;
  color: #c9b77e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.proof-tile-card:hover .proof-card-pill {
  transform: scale(1.08) rotate(5deg);
  background: rgba(4, 5, 5, 0.9);
}

.proof-card-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 29px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.proof-tile-cannes-feature {
  display: grid;
  grid-template-columns: 520px 1fr;
  background: #090b0b;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #c2a661;
  cursor: pointer;
}

.cannes-media-side {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cannes-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cannes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 6, 0.74) 0%,
    rgba(5, 6, 6, 0.12) 24%,
    rgba(5, 6, 6, 0.18) 56%,
    rgba(5, 6, 6, 0.94) 100%
  );
}

.cannes-media-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cannes-tag {
  font-size: 12px;
  font-weight: 600;
  color: #c9b77e;
  letter-spacing: 0.05em;
}

.cannes-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(4, 5, 5, 0.62);
  border: 1px solid #c9b77e;
  color: #c9b77e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.proof-tile-cannes-feature:hover .cannes-pill {
  transform: scale(1.08) rotate(5deg);
  background: rgba(4, 5, 5, 0.9);
}

.cannes-media-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 29px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.cannes-copy-side {
  background: #ebe3cf;
  color: #1a1714;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.cannes-eyebrow {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #805738;
}

.cannes-heading {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 38px;
  font-weight: 500;
  color: #1a1714;
  line-height: 1.2;
  margin: 0;
}

.cannes-detail {
  font-family: var(--font-manrope);
  font-size: 18px;
  color: #3d362e;
  margin: 18px 0 32px 0;
}

.cannes-source {
  font-size: 12px;
  color: #73634f;
  margin: 0;
}

/* ==========================================================================
   10. SECTION 9: LAUNCH PROGRAM & PARTNER PRIVILEGES
   ========================================================================= */
.sec-launch-program {
  padding: 100px 0;
  background-color: #0a0d0f;
  color: #ffffff;
}

/* 1. Header */
.launch-program-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.launch-main-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 64px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

.launch-mob-br {
  display: none;
}

.launch-header-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.launch-subtitle {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-size: 17px;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.launch-product-name {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-gold, #c9b77e);
  margin: 0;
}

.launch-header-rule {
  width: 100%;
  height: 1px;
  background: rgba(201, 183, 126, 0.3);
  margin-bottom: 56px;
}

/* 2. Partner Privileges */
.partner-privileges-wrapper {
  margin-bottom: 64px;
}

.privileges-header {
  margin-bottom: 32px;
}

.privileges-eyebrow {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold, #c9b77e);
  margin-bottom: 8px;
  display: block;
}

.privileges-intro {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 34px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 16px;
}

.privileges-rule {
  width: 100%;
  height: 1px;
  background: rgba(201, 183, 126, 0.3);
  margin-bottom: 24px;
}

.privileges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.privilege-card {
  background: #151b20;
  border: 1px solid rgba(201, 183, 126, 0.25);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.privilege-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
}

.privilege-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privilege-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #151b20 0%, rgba(21, 27, 32, 0.6) 100%);
}

.privilege-content {
  position: relative;
  z-index: 2;
  max-width: 85%;
}

.privilege-content-mobile {
  display: none;
}

.privilege-content-desktop {
  display: contents;
}

.privilege-value {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold, #c9b77e);
  margin-bottom: 8px;
  display: block;
}

.privilege-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
}

.privilege-body {
  font-family: var(--font-manrope);
}

.privilege-body p {
  font-family: var(--font-manrope);
  font-size: 13px;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 8px;
}

.privilege-body ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.privilege-body li {
  font-family: var(--font-manrope);
  font-size: 13px;
  line-height: 1.5;
  color: #d6cfc5;
  margin-bottom: 4px;
}

/* 3. Launch Offers Stage */
.launch-offers-stage {
  display: grid;
  grid-template-columns: 356px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.launch-total-panel {
  background: #f4e8cf;
  color: #8b5e3c;
  border: 1px solid #cca157;
  border-radius: 20px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  box-sizing: border-box;
}

.launch-total-label {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  color: #8b5e3c;
}

.launch-total-number span {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 64px;
  font-weight: 500;
  color: #8b5e3c;
  line-height: 1.05;
  display: block;
}

.launch-total-number h3 {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 64px;
  font-weight: 500;
  color: #8b5e3c;
  line-height: 1.05;
  margin: 0;
}

.launch-threshold-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.launch-threshold-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #8b5e3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139, 94, 60, 0.15);
}

.launch-threshold-text strong {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-size: 15px;
  font-weight: 700;
  display: block;
  color: #8b5e3c;
}

.launch-threshold-text p {
  font-family: var(--font-primary, "EB Garamond", sans-serif);
  font-size: 15px;
  font-weight: 400;
  margin: 2px 0 0;
  color: #8b5e3c;
}

.launch-offer-row {
  display: grid;
  grid-template-columns: 304px 332px 1fr;
  gap: 20px;
}

.launch-hero-card {
  background: linear-gradient(90deg, #0e0f0f 0%, #29170e 100%);
  border: 1px solid #cca157;
  border-radius: 20px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.launch-hero-badge {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 700;
  color: #c9b77e;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: block;
}

.buy-text {
  display: block;
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 77px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.05;
  text-align: left;
}

.get-text {
  display: block;
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 77px;
  font-style: italic;
  font-weight: 500;
  color: #c9b77e;
  line-height: 1.05;
  text-align: right;
}

.launch-product-card {
  position: relative;
  overflow: hidden;
  background: #171b20;
  border: 1px solid #cca157;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.launch-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(17, 10, 7, 0.1) 45%,
    rgba(35, 21, 14, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.launch-prod-eyebrow {
  position: relative;
  z-index: 2;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.launch-prod-img-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.launch-prod-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-manrope);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.launch-gift-card {
  background: #f4e8cf;
  color: #8b5e3c;
  border: 1px solid #cca157;
  border-radius: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.launch-gift-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.launch-gift-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #8b5e3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.launch-gift-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 40px;
  font-weight: 500;
  color: #8b5e3c;
  margin: 0;
}

.launch-gift-img-box {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}

.launch-gift-img {
  max-height: 100%;
  object-fit: contain;
}

.launch-gift-desc {
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #8b5e3c;
  margin: 0;
}

/* Mobile Main Offer Layout (Hidden on Desktop) */
.mob-main-offer-layout {
  display: none;
}

/* 4. 24H Urgency Callout Box (Exact Figma Layout & Typography) */
.urgency-callout-box {
  background: #f4e8cf;
  border: 1px solid #c9b77e;
  border-radius: 24px;
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  gap: 12px;
}

.urgency-headline {
  font-family: var(--font-manrope);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #0a0d0f;
  margin: 0;
}

.urgency-contact {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #8b5e3c;
  margin: 0;
}

/* ==========================================================================
   11. SECTION 10: REBIRTH CONTACT & COMMUNITY BENEFITS
   ========================================================================= */
.sec-rebirth-contact {
  padding: 100px 0;
  background-color: #fbfaf6;
  color: #0a0d0f;
}

.rebirth-layout-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.rebirth-content-side {
  display: flex;
  flex-direction: column;
}

.rebirth-title {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 68px;
  font-weight: 500;
  color: #0a0d0f;
  line-height: 1.1;
  margin-bottom: 16px;
}

.rebirth-title-italic,
.rebirth-title em {
  font-style: italic;
}

.rebirth-subtitle {
  font-family: var(--font-display, "EB Garamond", serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  color: #8b5e3c;
  margin-bottom: 24px;
}

.rebirth-divider {
  width: 100%;
  height: 1px;
  background: #734726;
  opacity: 0.3;
  margin-bottom: 32px;
}

.rebirth-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rebirth-benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(139, 94, 60, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  min-height: 96px;
  transition: var(--transition-smooth);
}

.rebirth-benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold, #c9b77e);
}

.rebirth-benefit-card .benefit-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #efe4d4;
  color: #8b5e3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.rebirth-benefit-card .benefit-text,
.benefit-text {
  font-family: var(--font-manrope);
  font-size: 15px;
  color: #0a0d0f;
  line-height: 1.45;
  margin: 0;
}

/* Right QR Card */
.rebirth-qr-card {
  background: #f2f0e8;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(139, 94, 60, 0.15);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

.rebirth-qr-label {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 700;
  color: #8b5e3c;
  margin-bottom: 20px;
}

.rebirth-qr-img-box {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rebirth-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rebirth-qr-caption {
  font-family: var(--font-manrope);
  font-size: 14px;
  color: #8b5e3c;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   12. SECTION 11: PARTNERSHIP CTA BANNER
   ========================================================================= */
.sec-partnership-cta {
  padding: 80px 0;
  background-color: #fbfaf6;
}

.partnership-cta-stage {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: #130e0a;
  color: #ffffff;
}

.partnership-cta-bg {
  position: absolute;
  inset: 0;
}

.partnership-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partnership-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 14, 10, 0.75);
}

.partnership-cta-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  width: 100%;
}

.partnership-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 54px);
  font-weight: 500;
  line-height: 1.25;
  color: #fbfaf6;
  margin-bottom: 34px;
}

.partnership-cta-line1 {
  display: inline-block;
  white-space: nowrap;
}

.partnership-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fbfaf6;
  color: #0a0d0e;
  padding: 14px 14px 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.partnership-cta-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c9b87d;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.cta-btn-icon .fa-arrow-up-right::before,
.fa-arrow-up-right::before {
  content: "\f061";
  transform: rotate(-45deg);
  display: inline-block;
}

/* =========================================================================
   13. FOOTER / THE ART OF 113
   ========================================================================= */
.site-footer {
  position: relative;
  background-color: #060808;
  background-image: url("../assets/images/banner/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 72px 0 48px;
  color: #b0b0a6;
  font-family: var(--font-serif);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 8, 0.72);
  z-index: 0;
}

.site-footer .footer-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  padding-left: 80px;
  padding-right: 80px;
}

/* ── Main Row: Brand (700px) & Sitemap (500px) ── */
.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

/* ── Brand Identity Column ── */
.footer-brand-col {
  flex: 0 0 700px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.28vw, 4.75rem); /* 76px */
  line-height: 0.95;
  letter-spacing: -1.2px;
  color: #fbfaf6;
  margin-bottom: 24px;
}

.footer-brand-tagline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: #c9b87d;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-brand-statement {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #b0b0a6;
  margin-bottom: 24px;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-company-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  color: #c9b77e;
  margin: 0;
  letter-spacing: 0;
}

.footer-company-desc {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 10px;
}

.footer-contact-row {
  font-family: var(--font-manrope);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact-item:hover {
  color: #c9b87d;
}

.footer-contact-item i {
  color: #c9b87d;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-spacer {
  display: inline-block;
  width: 16px;
  height: 1px;
}

/* ── Sitemap & Offices Column ── */
.footer-sitemap-col {
  flex: 0 0 500px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}

.footer-sitemap-nav {
  display: flex;
  gap: 72px;
  margin-bottom: 48px;
}

.footer-nav-col {
  font-family: var(--font-manrope);
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.footer-nav-title {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #c9b87d;
  margin-bottom: 16px;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-links a {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #fbfaf6;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-nav-links a:hover {
  color: #c9b87d;
  transform: translateX(4px);
}

/* ── Offices Block ── */
.footer-offices-block {
  font-family: var(--font-manrope);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-offices-title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9b77e;
  margin-bottom: 2px;
}

.footer-office-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-office-row i {
  color: #c9b77e;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-office-row p {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ── Divider ── */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(251, 250, 246, 0.16);
  margin-top: 52px;
}

/* ── Bottom Rail ── */
.footer-bottom-rail {
  font-family: var(--font-manrope);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-product-meta {
  flex: 1;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #b0b0a6;
  margin: 0;
}

.footer-logo-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-epl-logo {
  width: 108px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.footer-copyright {
  flex: 1;
  text-align: right;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #b0b0a6;
  margin: 0;
}
