@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
  --blue: #B8D4E3;
  --blue-dark: #8AABCA;
  --rose-gold: #C5A880;
  --rose-gold-light: #DCC4A0;
  --charcoal: #1A1A2E;
  --charcoal-light: #3a3a5c;
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --soft-gray: #F5F3F0;
  --text-muted: #888;
  --nav-h: 80px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.15em;
  text-decoration: none; transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--charcoal); }

.nav-menu { display: flex; gap: 2.5rem; list-style: none; }
.nav-menu a {
  font-family: 'Lato', sans-serif; font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
#navbar.scrolled .nav-menu a { color: var(--charcoal-light); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--rose-gold);
  transition: width 0.35s ease, left 0.35s ease;
}
.nav-menu a:hover { color: var(--rose-gold) !important; }
.nav-menu a:hover::after {
  width: 100%;
  left: 0;
}

/* ── NAV DROPDOWN (Brochure download) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a,
#navbar.scrolled .nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--soft-gray, #f5f3f0); }

.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
#navbar.scrolled .nav-hamburger span { background: var(--charcoal); }

/* ── LANGUAGE SELECTOR (HORIZONTAL PILL BUTTONS) ── */
.lang-switcher-container {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: 1.5rem;
  font-family: 'Pretendard', sans-serif;
}
.lang-btn {
  background: rgba(26, 26, 46, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.lang-btn:hover {
  background: rgba(26, 26, 46, 0.75);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.lang-btn.active {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  font-weight: 600;
}

/* Scrolled Navbar Theme */
#navbar.scrolled .lang-btn {
  background: var(--soft-gray);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--charcoal);
  backdrop-filter: none;
}
#navbar.scrolled .lang-btn:hover {
  background: #eae7e2;
  color: var(--charcoal);
  border-color: rgba(0, 0, 0, 0.15);
}
#navbar.scrolled .lang-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Mobile Media Queries */
@media (max-width: 768px) {
  .lang-switcher-container {
    margin-left: 0.5rem;
    gap: 0.2rem;
  }
  .lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  padding: 2rem; z-index: 998; flex-direction: column; gap: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Lato', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal); text-decoration: none;
}

/* ── HERO ── */
#hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img,
.hero-slide video,
.hero-slide iframe {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  border: none; pointer-events: none;
}
.hero-slide iframe {
  transform: scale(1.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.55) 0%, rgba(26,26,46,0.2) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 1rem;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose-gold-light); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-slide.active .hero-eyebrow {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1.4rem;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-slide.active .hero-title {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.4s;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8); margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-slide.active .hero-sub {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.6s;
}
.hero-btn {
  display: inline-block; padding: 14px 42px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white); text-decoration: none;
  font-family: 'Lato', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all var(--transition); border-radius: 2px;
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition), opacity 0.8s ease, transform 0.8s ease;
}
.hero-slide.active .hero-btn {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.8s;
}
.hero-btn:hover {
  background: var(--rose-gold); border-color: var(--rose-gold);
}

.hero-arrows {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 1rem;
}
.hero-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent; color: var(--white);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.hero-arrow:hover { background: var(--rose-gold); border-color: var(--rose-gold); }

.hero-dots {
  position: absolute; bottom: 2.5rem; right: 5%;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--rose-gold); transform: scale(1.4); }

/* ── SECTIONS COMMON ── */
section { padding: 7rem 5%; }
.section-eyebrow {
  font-family: 'Lato', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose-gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 1.5rem;
  word-break: keep-all;
}
.section-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  color: #555; max-width: 560px;
}

/* ── REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ── STAGGERED DELAYS ── */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


/* ── ABOUT ── */
#about { background: var(--off-white); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
}
.about-img-wrap img { width: 100%; display: block; }
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--rose-gold); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; text-align: center;
  font-size: 0.75rem; line-height: 1.4;
  box-shadow: 0 8px 30px rgba(197,168,128,0.4);
}
.about-img-badge strong { font-size: 1.6rem; display: block; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.stat-item { border-left: 2px solid var(--rose-gold); padding-left: 1.2rem; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--charcoal);
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── PRODUCTS ── */
#products { background: var(--white); }
.products-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.products-header .section-desc { margin: 0 auto; }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1300px; margin: 0 auto;
}
.product-card {
  cursor: pointer; text-align: center;
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-8px); }
.product-img-wrap {
  position: relative; overflow: hidden;
  border-radius: 4px; margin-bottom: 1.5rem;
  background: var(--soft-gray);
  aspect-ratio: 3/4;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--rose-gold); color: var(--white);
  padding: 4px 10px; border-radius: 2px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400; margin-bottom: 0.4rem;
}
.product-scent { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.product-price { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); }
.product-cta-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.product-cta {
  flex: 1;
  padding: 10px 0;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  transition: all var(--transition);
}
.naver-store {
  background: #03c75a;
  border: 1px solid #03c75a;
  color: var(--white) !important;
}
.naver-store:hover {
  background: #02b34f;
  border-color: #02b34f;
  color: var(--white) !important;
}
.coupang-store {
  background: #0074e9;
  border: 1px solid #0074e9;
  color: var(--white) !important;
}
.coupang-store:hover {
  background: #0062c4;
  border-color: #0062c4;
  color: var(--white) !important;
}

/* ── INGREDIENTS ── */
#ingredients {
  background: var(--charcoal);
  color: var(--white);
}
.ingredients-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
#ingredients .section-title { color: var(--white); }
#ingredients .section-desc { color: rgba(255,255,255,0.65); }
.ing-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ing-item { display: flex; align-items: center; gap: 1.2rem; }
.ing-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(197,168,128,0.15); border: 1px solid rgba(197,168,128,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ing-text strong { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
.ing-text span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.ing-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.ing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 1.8rem 1.4rem;
  text-align: center; transition: all var(--transition);
}
.ing-card:hover {
  background: rgba(197,168,128,0.1);
  border-color: rgba(197,168,128,0.3);
}
.ing-card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.ing-card-label { font-size: 0.78rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); }

/* ── REVIEWS ── */
#reviews { background: var(--off-white); text-align: center; }
.reviews-header { max-width: 600px; margin: 0 auto 3.5rem; }
.reviews-header .section-title {
  white-space: nowrap;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.review-card-photo,
.photo-review .review-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--soft-gray);
}
.review-card-photo img,
.photo-review .review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover .review-card-photo img,
.review-card:hover .photo-review .review-img img {
  transform: scale(1.05);
}
.review-card-body {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.review-stars { color: var(--rose-gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  word-break: keep-all;
}
.review-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-name { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.review-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── BANNER ── */
#banner {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--rose-gold-light) 100%);
  text-align: center; color: var(--white);
}
.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400; margin-bottom: 1.2rem;
}
.banner-sub { font-size: 0.95rem; font-weight: 300; margin-bottom: 2.5rem; opacity: 0.9; }
.banner-btn {
  display: inline-block; padding: 15px 50px;
  background: var(--white); color: var(--charcoal);
  text-decoration: none; font-family: 'Lato', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all var(--transition); border-radius: 2px;
}
.banner-btn:hover { background: var(--charcoal); color: var(--white); }

/* ── FOOTER ── */
#footer {
  background: var(--off-white);
  color: #333;
  padding: 6rem 5% 3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
#footer h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.8fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
.cs-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}
.cs-time {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
}
.bank-info {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
}
.bank-info strong {
  font-size: 1rem;
  color: var(--charcoal);
}
.footer-biz {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.85;
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 2rem;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #fff;
}

/* ── CEO MESSAGE & BRAND STORY (롭이 마스코트) ── */
#story {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #fbfaf6 0%, #f1f6f8 100%);
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.story-container {
  max-width: 1200px;
  margin: 0 auto;
}
.story-header {
  text-align: center;
  margin-bottom: 5rem;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: stretch;
}
.story-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 4rem 3.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}
.story-card .card-title {
  font-family: 'Lato', 'Pretendard', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: -0.01em;
}
.story-card .card-title::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--rose-gold);
}

/* CEO Card Specifics */
.ceo-card {
  align-items: flex-start;
  text-align: left;
}
.ceo-img-wrap {
  width: 130px;
  height: 130px;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.ceo-card:hover .ceo-img-wrap {
  transform: scale(1.03);
}
.ceo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ceo-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.ceo-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
}
.ceo-signature {
  margin-top: 3rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}
.ceo-signature .sig-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.ceo-signature .sig-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 0.2rem;
}

/* Loby Card Specifics */
.loby-card {
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}
.loby-card .card-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.loby-img-wrap {
  width: 170px;
  height: 170px;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease;
}
.loby-card:hover .loby-img-wrap {
  transform: scale(1.03);
}
.loby-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.loby-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
  text-align: left;
  word-break: keep-all;
}

/* Responsive for Story Section */
@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-card {
    padding: 3rem 2rem;
  }
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--rose-gold);
}
.footer-sns {
  display: flex;
  gap: 1.2rem;
}
.footer-sns a {
  color: #666;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer-sns a:hover {
  color: var(--rose-gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── B2B ── */
#b2b { background: var(--soft-gray); }
.b2b-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.b2b-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.b2b-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.b2b-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(197,168,128,0.12); border: 1px solid rgba(197,168,128,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: 2px;
}
.b2b-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.b2b-item strong { font-size: 0.9rem; font-weight: 500; }
.b2b-item span { font-size: 0.8rem; color: var(--text-muted); }
.b2b-btn {
  display: inline-block; margin-top: 2.5rem;
  padding: 14px 38px;
  background: var(--charcoal); color: var(--white);
  text-decoration: none; font-family: 'Lato', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all var(--transition); border-radius: 2px;
}
.b2b-btn:hover { background: var(--rose-gold); }

.b2b-packaging {
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.pkg-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 0.5rem;
}
.pkg-tab {
  padding: 8px 18px; border: none; background: transparent;
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  color: var(--text-muted); transition: all var(--transition);
  position: relative;
}
.pkg-tab.active {
  color: var(--charcoal);
}
.pkg-tab.active::after {
  content: ''; position: absolute; bottom: -0.6rem; left: 0; right: 0;
  height: 2px; background: var(--rose-gold);
}
.pkg-panel {
  display: none;
}
.pkg-panel.active {
  display: block;
}
.packaging-label {
  font-family: 'Lato', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-gold); margin-bottom: 1rem;
}
.packaging-img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  background: var(--white);
}
.packaging-caption {
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: 1rem; text-align: center; letter-spacing: 0.03em;
}

/* 전성분 더보기 스타일 */
.ingredients-detail {
  margin-top: 2rem; padding: 1.5rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}
.ingredients-detail-title {
  font-size: 0.85rem; font-weight: 500; color: var(--rose-gold-light);
  margin-bottom: 0.8rem; letter-spacing: 0.05em;
}
.ingredients-all-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.7;
  word-break: keep-all;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .ingredients-inner, .b2b-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .b2b-packaging { position: static; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 5rem 6%; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ── MARQUEE TICKER ── */
.marquee-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.15em;
  margin-right: 4rem;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── BRAND MOODS (3-Column Layout like Come Inside Me) ── */
#brand-moods {
  padding: 5rem 5% 3rem;
  background: var(--white);
}
.moods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.mood-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.mood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0) 40%, rgba(26,26,46,0.65) 100%);
  transition: background 0.4s ease;
}
.mood-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--white);
  z-index: 2;
}
.mood-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.mood-info p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  word-break: keep-all;
}
.mood-card:hover img {
  transform: scale(1.05);
}
.mood-card:hover .mood-overlay {
  background: linear-gradient(to bottom, rgba(26,26,46,0.1) 40%, rgba(26,26,46,0.75) 100%);
}

/* ── PREMIUM SERVICE BANNERS ── */
#info-banners {
  padding: 6rem 5%;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.info-banner-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(0,0,0,0.08);
  transition: border-color var(--transition);
}
.info-banner-card:hover {
  border-color: var(--rose-gold);
}
.banner-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--rose-gold);
  line-height: 1;
}
.banner-content h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.banner-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.banner-content p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  word-break: keep-all;
}

/* ── ADDITIONAL RESPONSIVE ── */
@media (max-width: 768px) {
  .moods-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .banners-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .info-banner-card {
    padding-left: 1.5rem;
    gap: 1.2rem;
  }
}

/* ── STORY VIDEO ── */
#story-video {
  padding: 6rem 5%;
  background: var(--white);
  text-align: center;
}
.video-section-header {
  margin-bottom: 3.5rem;
}
.video-section-header .section-title {
  margin-top: 0.5rem;
}
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
  border: 1px solid rgba(0,0,0,0.08);
}
.embed-shorts {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
  display: block;
}

/* ── GLOBAL ACHIEVEMENTS ── */
#global-achievements {
  padding: 5rem 5%;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.achievements-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.achievement-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.achieve-logo-wrap {
  background: #f8f8fa;
  width: 96px;
  height: 52px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.04);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: background var(--transition);
}
.achievement-card:hover .achieve-logo-wrap {
  background: var(--white);
  border-color: rgba(197, 160, 149, 0.25);
}
.achieve-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}
.achievement-card:hover .achieve-logo-img {
  filter: grayscale(0) opacity(1);
}
.qoo10-logo {
  max-height: 20px;
}
.shopee-logo {
  max-height: 24px;
}
.achieve-content .achieve-eyebrow {
  font-size: 0.72rem;
  color: var(--rose-gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.achieve-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.4;
  word-break: keep-all;
}
.achieve-content .achieve-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  word-break: keep-all;
}

/* ── PRESS & NEWSLETTER ── */
#press-newsletter {
  padding: 7rem 5%;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.press-newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.press-column .press-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.press-item {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition);
}
.press-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.press-item:hover {
  transform: translateX(5px);
}
.press-source {
  font-size: 0.72rem;
  color: var(--rose-gold);
  font-weight: 600;
  background: rgba(197, 160, 149, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.press-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color var(--transition);
  word-break: keep-all;
}
.press-item:hover .press-headline {
  color: var(--rose-gold);
}
.press-summary {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  word-break: keep-all;
}

.newsletter-column {
  background: var(--off-white);
  padding: 4rem 3rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
  margin: 1.5rem 0 2rem 0;
  word-break: keep-all;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
#newsletterEmail {
  flex-grow: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
#newsletterEmail:focus {
  border-color: var(--rose-gold);
}
.newsletter-btn {
  background: var(--charcoal);
  color: var(--white);
  padding: 0 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--rose-gold);
}
.newsletter-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Responsive for Press & Achievements */
@media (max-width: 991px) {
  .press-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .achievements-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── ADVANCED SCROLL REVEAL EFFECTS ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
}

/* 아래에서 위로 (기본형) */
.reveal {
  transform: translateY(50px) scale(0.98);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 왼쪽에서 오른쪽으로 */
.reveal-left {
  transform: translateX(-50px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 오른쪽에서 왼쪽으로 */
.reveal-right {
  transform: translateX(50px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 크기가 커지며 줌인 */
.reveal-scale {
  transform: scale(0.9);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* 시차 리빌을 위한 딜레이 유틸리티 */
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* ── INFINITE RUNNING TEXT (MARQUEE) ── */
.marquee-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: rgba(197, 160, 149, 0.08);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(197, 160, 149, 0.15);
  border-bottom: 1px solid rgba(197, 160, 149, 0.15);
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}
.marquee-content span {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  margin-right: 4rem;
  text-transform: uppercase;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO TEXT STAGGERED OPENING ── */
.hero-content .hero-eyebrow,
.hero-content .hero-title,
.hero-content .hero-sub,
.hero-content .hero-btn {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .hero-content .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-slide.active .hero-content .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.hero-slide.active .hero-content .hero-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.hero-slide.active .hero-content .hero-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* ── SHOPEE MALAYSIA REVIEWS ── */
.shopee-badge {
  background: #FF5722;
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.qoo10-badge {
  background: #E60012;
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.translation {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
}
.shopee-review .review-text,
.qoo10-review .review-text {
  font-family: 'Lato', 'Pretendard', sans-serif;
  line-height: 1.6;
}

/* ── TIKTOK CREATORS SECTION ── */
#tiktok-reviews {
  padding: 6rem 5% 4rem;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.tiktok-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tiktok-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.tiktok-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.6rem;
}
.tiktok-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  font-family: 'Playfair Display', 'Pretendard', serif;
  letter-spacing: -0.02em;
}
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.tiktok-card {
  position: relative;
  background: #12121e;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.tiktok-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.tiktok-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(18, 18, 30, 0.3), 
              -5px -5px 20px rgba(37, 244, 238, 0.12), 
              5px 5px 20px rgba(254, 44, 85, 0.12);
}
.tiktok-card:hover .tiktok-card-glow {
  opacity: 1;
}
.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 500;
  align-self: flex-start;
  z-index: 2;
  margin-bottom: 2rem;
}
.tiktok-icon {
  fill: currentColor;
}
.tiktok-card-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.tiktok-creator-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tiktok-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe2c55, #25f4ee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}
.tiktok-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.tiktok-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: keep-all;
}
.tiktok-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fe2c55;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.3s;
}
.tiktok-card:hover .tiktok-play-btn {
  color: #25f4ee;
}

/* Responsive */
@media (max-width: 1024px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .tiktok-card {
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .reviews-header .section-title {
    font-size: clamp(1.1rem, 6.2vw, 1.6rem);
  }
}

/* ════════════════════════════════════════════════
   MULTI-PAGE SHELL (GNB pages + LNB + fixed home)
   ════════════════════════════════════════════════ */

/* ── Active GNB item ── */
.nav-menu a.active { color: var(--rose-gold) !important; }
.nav-menu a.active::after { width: 100%; left: 0; }

/* ── Fixed (no-scroll) home ── */
body.home-fixed { height: 100dvh; overflow: hidden; }
#home-hero {
  position: relative; height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
}
#home-hero .home-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 70% 20%;
}
#home-hero .home-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,18,24,0.62) 0%, rgba(20,18,24,0.35) 45%, rgba(20,18,24,0.08) 100%);
}
.home-content {
  position: relative; z-index: 2;
  padding: 0 7%; max-width: 760px;
}
.home-content .hero-eyebrow {
  font-family: 'Lato', sans-serif; font-size: 0.8rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--rose-gold); margin-bottom: 1.2rem;
}
.home-content h1 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.15;
  color: var(--white); margin-bottom: 1.4rem;
}
.home-content h1 em { font-style: normal; color: var(--rose-gold); }
.home-content .home-sub {
  font-size: 1.02rem; color: rgba(255,255,255,0.85); margin-bottom: 2.2rem; line-height: 1.7;
}
.home-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.home-btn {
  display: inline-block; padding: 0.95rem 2.4rem;
  font-family: 'Lato', sans-serif; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: all var(--transition);
  border: 1px solid var(--rose-gold);
}
.home-btn.primary { background: var(--rose-gold); color: #fff; }
.home-btn.primary:hover { background: transparent; color: var(--rose-gold); }
.home-btn.ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.home-btn.ghost:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

/* ── Home bottom scent quick-nav ── */
.home-scent-nav {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.scent-link {
  display: flex; align-items: center; gap: 0.7rem; justify-content: center;
  padding: 1.1rem 0.8rem; text-decoration: none;
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: background var(--transition);
}
.scent-link:last-child { border-right: none; }
.scent-link:hover { background: #faf7f2; }
.scent-dot { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.scent-link .scent-name {
  font-family: 'Lato', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal);
}
.scent-link .scent-note { display: block; font-size: 0.68rem; color: #999; letter-spacing: 0.02em; text-transform: none; }
.dot-sosweet   { background: #F6B8D0; }
.dot-bombshell { background: #A9D5EE; }
.dot-blooming  { background: #F2DE7C; }
.dot-morningdew{ background: #C6DE8C; }

/* ── Sub-page shell ── */
body.subpage { padding-top: var(--nav-h); background: #fff; }
.page-hero {
  padding: 4.2rem 5% 2.6rem; text-align: center;
  background: #faf7f2;
}
.page-hero .section-eyebrow { margin-bottom: 0.6rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem); color: var(--charcoal);
}
.page-hero .page-desc { max-width: 620px; margin: 1rem auto 0; color: #777; line-height: 1.8; font-size: 0.95rem; }

/* ── LNB ── */
.lnb {
  position: sticky; top: var(--nav-h); z-index: 900;
  display: flex; justify-content: center; gap: 0.25rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0 5%;
}
.lnb a {
  flex: none; padding: 0.95rem 1.15rem;
  font-family: 'Lato', sans-serif; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #8a8a8a; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.lnb a:hover, .lnb a.active { color: var(--rose-gold); border-color: var(--rose-gold); }

/* ── Real product cards (pastel per scent) ── */
.product-img-wrap.tint-sosweet   { background: linear-gradient(160deg, #FBDCE9, #F6C3D8); }
.product-img-wrap.tint-bombshell { background: linear-gradient(160deg, #D7EBF8, #BFDFF2); }
.product-img-wrap.tint-blooming  { background: linear-gradient(160deg, #F9F0C0, #F2E39A); }
.product-img-wrap.tint-morningdew{ background: linear-gradient(160deg, #E6F0C4, #D5E5A6); }
.product-img-wrap.tinted img { object-fit: contain; padding: 1.5rem; mix-blend-mode: multiply; }

/* ── Products page gallery strip ── */
.gallery-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding: 0 5% 5rem; max-width: 1280px; margin: 0 auto;
}
.gallery-strip figure { margin: 0; overflow: hidden; border-radius: 10px; }
.gallery-strip img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; display: block;
  transition: transform 0.6s ease;
}
.gallery-strip figure:hover img { transform: scale(1.04); }

/* ── Mini footer for sub-pages ── */
.footer-mini {
  margin-top: 4rem; padding: 2rem 5%;
  background: #17151a; text-align: center;
}
.footer-mini .fm-logo {
  font-family: 'Playfair Display', serif; color: #fff; letter-spacing: 0.15em;
  text-decoration: none; font-size: 1.1rem;
}
.footer-mini p { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin-top: 0.8rem; }
.footer-mini .fm-links { margin-top: 0.6rem; display: flex; gap: 1.2rem; justify-content: center; }
.footer-mini .fm-links a { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-decoration: none; }
.footer-mini .fm-links a:hover { color: var(--rose-gold); }

/* ── Contact page blocks ── */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto; padding: 3rem 5%;
}
.contact-card {
  background: #faf7f2; border-radius: 12px; padding: 2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 1rem; }
.contact-card p { font-size: 0.88rem; color: #666; line-height: 1.8; }
.contact-card .cs-num { font-size: 1.7rem; font-weight: 700; color: var(--rose-gold); margin-bottom: 0.6rem; }
.download-row { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; }
.download-row a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.1rem; background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px; text-decoration: none; color: var(--charcoal); font-size: 0.85rem;
  transition: border-color var(--transition), transform var(--transition);
}
.download-row a:hover { border-color: var(--rose-gold); transform: translateY(-2px); }
.download-row .dl-arrow { color: var(--rose-gold); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .home-scent-nav { grid-template-columns: repeat(2, 1fr); }
  .scent-link { padding: 0.75rem 0.5rem; }
  .home-content { padding-top: 3rem; }
  .gallery-strip { grid-template-columns: 1fr; }
}
@media (max-height: 620px) {
  .home-scent-nav { display: none; }
}

/* ── Image logo ── */
.nav-logo img { height: 34px; display: block; filter: invert(1); transition: filter var(--transition); }
#navbar.scrolled .nav-logo img { filter: none; }
.footer-mini .fm-logo img { height: 30px; display: inline-block; filter: invert(1); opacity: 0.9; }

/* ── Desktop home: light hero over group shot (client feedback) ── */
@media (min-width: 861px) {
  #home-hero { justify-content: flex-start; }
  #home-hero .home-bg { object-position: 50% 50%; }
  #home-hero .home-overlay {
    background: linear-gradient(180deg, rgba(247,240,232,0.72) 0%, rgba(247,240,232,0.22) 38%, rgba(243,235,226,0.1) 100%);
  }
  .home-content { margin: 0 auto; text-align: center; max-width: 860px; padding-top: calc(var(--nav-h) + 4vh); }
  .home-cta-group { justify-content: center; }
  body.home-fixed .home-content h1 { color: var(--charcoal); }
  body.home-fixed .home-sub { color: #6f6a66; }
  body.home-fixed .home-btn.ghost { color: var(--charcoal); border-color: rgba(0,0,0,0.3); }
  body.home-fixed .home-btn.ghost:hover { color: var(--rose-gold); border-color: var(--rose-gold); }
  body.home-fixed .nav-logo img { filter: none; }
  body.home-fixed .nav-menu a { color: var(--charcoal-light); }
  body.home-fixed .lang-btn {
    background: var(--soft-gray); border-color: rgba(0,0,0,0.08);
    color: var(--charcoal); backdrop-filter: none;
  }
  body.home-fixed .lang-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
}

/* ── Real-asset swaps: initials avatar + CEO logo mark ── */
div.review-avatar {
  display: flex; align-items: center; justify-content: center;
  background: #f0e9e4; color: var(--charcoal);
  font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 600;
}
.ceo-img-wrap img.ceo-logo { object-fit: contain; padding: 28px; background: #faf7f2; }

/* ── Mobile nav fixes: keep hamburger on-screen, hide LNB scrollbar ── */
.lnb { scrollbar-width: none; }
.lnb::-webkit-scrollbar { display: none; }
.nav-hamburger { flex-shrink: 0; }
@media (max-width: 768px) {
  #navbar { padding: 0 44px 0 3%; }
  .nav-hamburger { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); padding: 12px; }
  .lang-switcher-container {
    flex: 0 1 auto; min-width: 0;
    overflow-x: auto; scrollbar-width: none;
    gap: 0.15rem; margin-left: 0.3rem;
  }
  .lang-switcher-container::-webkit-scrollbar { display: none; }
}
@media (max-width: 480px) {
  .nav-logo img { height: 28px; }
  .lang-btn { padding: 0.22rem 0.4rem; font-size: 0.6rem; }
}

/* ── Footer company info ── */
.footer-mini .fm-biz {
  color: rgba(255,255,255,0.5); font-size: 0.74rem; line-height: 1.9;
  margin-top: 1.4rem; word-break: keep-all;
}

/* ── Home footer (Customer Center / Company·Legal / 제휴문의) ── */
body.home-fixed { overflow: auto; overflow-x: hidden; height: auto; }
body.home-fixed #home-hero { height: 100dvh; }
.home-footer { background: #fff; border-top: 1px solid rgba(0,0,0,0.07); padding: 4rem 7% 0; }
.hf-grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 3rem;
  max-width: 1400px; margin: 0 auto;
}
.hf-col h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.4rem; }
.hf-col p { font-size: 0.82rem; color: #555; line-height: 2; margin-bottom: 1.2rem; word-break: keep-all; }
.hf-col .hf-tel { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; }
.hf-bottom {
  max-width: 1400px; margin: 1.5rem auto 0;
  padding: 1.4rem 0 2.2rem; border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem;
}
.hf-links { display: flex; gap: 1.4rem; }
.hf-links a { font-size: 0.8rem; color: #444; text-decoration: none; }
.hf-links a:hover { color: var(--rose-gold); }
.hf-bottom > p { font-size: 0.78rem; color: #888; }
@media (max-width: 860px) {
  .hf-grid { grid-template-columns: 1fr; gap: 2rem; }
  .home-footer { padding-top: 3rem; }
}

/* ── Scroll cue (main hero → footer) ── */
html { scroll-behavior: smooth; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 84px; z-index: 4;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  animation: cue-bob 2.2s ease-in-out infinite;
}
.scroll-cue span {
  width: 13px; height: 13px;
  border-right: 2px solid rgba(255,255,255,0.9);
  border-bottom: 2px solid rgba(255,255,255,0.9);
  transform: rotate(45deg);
  transition: border-color var(--transition);
}
.scroll-cue:hover span { border-color: var(--rose-gold); }
@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 9px); }
}
@media (min-width: 861px) {
  .scroll-cue span { border-color: rgba(70,64,58,0.6); }
}
@media (max-width: 860px) {
  .scroll-cue { bottom: 118px; }
}
@media (max-height: 620px) {
  .scroll-cue { bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}
