/* =============================================
   VIVAME 비바미 — Brand Landing Page Styles
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --bg-warm: #F6EFE7;
  --bg-sand: #E7D6C7;
  --bg-dark: #1A1210;
  --text-deep: #2E2522;
  --text-mid: #5C4033;
  --text-light: #8B7169;
  --accent: #C96F4A;
  --accent-light: #E88E6D;
  --accent-pale: #F2D5C7;
  --white: #FFFFFF;
  --border: rgba(46, 37, 34, 0.12);

  --font-kr: 'Noto Sans KR', sans-serif;
  --font-en: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 4px 16px rgba(46, 37, 34, 0.08);
  --shadow-md: 0 12px 40px rgba(46, 37, 34, 0.14);
  --shadow-lg: 0 24px 64px rgba(46, 37, 34, 0.18);

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ---- Extended Variables (used in sub-pages) ---- */
  --brown-dark: #2E2522;
  --brown-mid: #5C4033;
  --brown-light: #8B7169;
  --text-muted: #8B7169;
  --green-dark: #3A5A40;
  --cream: #F6EFE7;
  --sand-light: #E7D6C7;
  --warm-white: #FAF6F2;
  --beige: #E7D6C7;
  --beige-mid: #D4B89A;
  --beige-dark: #C9A882;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-kr);
  background-color: var(--bg-warm);
  color: var(--text-deep);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 1 !important; /* 미리보기 환경에서 항상 보이도록 강제 */
}

/* AOS 로드 실패 시 폴백 — 숨겨진 요소 강제 표시 */
[data-aos]:not(.aos-animate) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-deep);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.text-accent { color: var(--accent); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-kr);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary i, .btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 111, 74, 0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-kr);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-kr);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-sand);
  color: var(--text-deep);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-kr);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--text-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-xl { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(246, 239, 231, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(46, 37, 34, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-deep);
  transition: color 0.3s;
}

.navbar:not(.scrolled) .logo-text { color: var(--white); }

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-deep);
  position: relative;
  transition: color 0.3s;
}

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 111, 74, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .hamburger span { background: var(--white); }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(246, 239, 231, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-deep);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.7rem 1.5rem !important;
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 18, 16, 0.68) 0%,
    rgba(46, 37, 34, 0.45) 40%,
    rgba(201, 111, 74, 0.12) 80%,
    rgba(26, 18, 16, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-highlight {
  color: var(--accent-light);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-light);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
}

.hero-subtitle strong {
  color: var(--accent-light);
  font-weight: 700;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  font-family: var(--font-en);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-tag {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}

.tag-1 { right: 5%; top: 32%; }
.tag-2 { right: 8%; top: 46%; }
.tag-3 { right: 4%; top: 60%; }

/* ============================================
   MARQUEE BAND
   ============================================ */
.marquee-band {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-track .dot {
  font-size: 0.7rem;
  opacity: 0.7;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   VIVAME INFO SECTIONS (타겟·혈관·이유)
   ============================================ */
.vivame-info-section {
  padding: 8rem 0;
  background: var(--bg-warm);
}

.vivame-info-dark {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.vivame-info-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vivame-info-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.18;
}

.vivame-info-dark > .container {
  position: relative;
  z-index: 1;
}

/* 4열 그리드 */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* 2열 그리드 */
.info-cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* 기본 카드 */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.info-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.info-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-card-img-wrap img {
  transform: scale(1.05);
}

.info-card-body {
  padding: 1.6rem 1.8rem 2rem;
}

.info-card-num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-deep);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.info-card-title em {
  font-style: normal;
  color: var(--accent);
}

.info-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* 다크 카드 (혈관 섹션) */
.info-card--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
}

.info-card--dark:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-6px);
}

.info-card--dark .info-card-title {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.info-card--dark .info-card-title em {
  color: var(--accent-light);
  font-style: normal;
}

.info-card--dark .info-card-desc {
  color: rgba(255,255,255,0.65);
}

.info-card-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.info-card-num-badge--green {
  background: #3A5A40;
}

/* 이유 카드 (reasons 섹션) */
.info-card--reason {
  background: var(--white);
  padding: 2.4rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-card--reason .info-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.reason-icon {
  font-size: 1.8rem;
  color: #3A5A40;
  margin-bottom: 1rem;
}

/* 반응형 */
@media (max-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vivame-info-section {
    padding: 5rem 0;
  }
  .info-cards-grid,
  .info-cards-grid--2 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .info-card--dark,
  .info-card--reason {
    padding: 1.8rem 1.5rem;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: 8rem 0;
  background: var(--bg-warm);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.problem-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  background: var(--bg-sand);
  border-radius: var(--radius-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame:hover img { transform: scale(1.04); }

.image-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(246, 239, 231, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.philosophy-bg-wrap {
  position: absolute;
  inset: 0;
}

.philosophy-bg-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0.55);
}

.philosophy-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.philosophy-quote {
  text-align: center;
  max-width: 700px;
}

.quote-mark {
  font-family: var(--font-en);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  font-weight: 900;
  opacity: 0.7;
}

.quote-mark.closing {
  line-height: 1.5;
}

.quote-text {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin: 1rem 0;
}

.quote-brand {
  font-family: var(--font-en);
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 1.5rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 8rem 0;
  background: var(--bg-sand);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  border: 1px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-pale);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap { margin-bottom: 1.5rem; }

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.feature-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-deep);
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.feature-tag {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-en);
}

.feature-highlight {
  background: var(--text-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}

.highlight-text {
  padding: 4rem;
  color: var(--white);
}

.highlight-label {
  display: inline-block;
  background: rgba(201, 111, 74, 0.2);
  color: var(--accent-light);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-en);
}

.highlight-text h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.highlight-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.highlight-image {
  height: auto;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center center;
  background: var(--bg-warm);
  transition: transform 0.6s ease;
  filter: none;
}

.highlight-image:hover img { transform: scale(1.04); }

/* ---- highlight-inner v2 (텍스트 위 + 사진 3장 아래) ---- */
.highlight-inner-v2 {
  display: flex;
  flex-direction: column;
}

.highlight-text-top {
  padding: 3.5rem 4rem 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.highlight-text-top h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.highlight-text-top p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* 3장 사진 그리드 */
.highlight-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.highlight-photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.highlight-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-photo-item:hover img {
  transform: scale(1.07);
}

.highlight-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(26,18,16,0.72) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}

.highlight-photo-item:hover .highlight-photo-label {
  opacity: 1;
  transform: translateY(0);
}

/* 반응형 */
@media (max-width: 768px) {
  .highlight-text-top {
    padding: 2.5rem 2rem 2rem;
  }
  .highlight-photos {
    grid-template-columns: repeat(3, 1fr);
  }
  .highlight-photo-item {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .highlight-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   LIFESTYLE SECTION
   ============================================ */
.lifestyle-section {
  padding: 8rem 0 0;
  background: var(--bg-warm);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  margin-top: 3rem;
  margin-bottom: 4px;
}

.lifestyle-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.lifestyle-item { overflow: hidden; }
.lifestyle-item.lg { height: 520px; }
.lifestyle-item.sm { height: 258px; }

.lifestyle-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-item:hover .lifestyle-img-wrap img {
  transform: scale(1.06);
}

.lifestyle-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(26, 18, 16, 0.75), transparent);
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.lifestyle-item:hover .lifestyle-caption {
  transform: translateY(0);
  opacity: 1;
}

.lifestyle-caption span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-en);
}

.lifestyle-caption h4 {
  font-size: 1.1rem;
  font-weight: 800;
}

.lifestyle-alt-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.lifestyle-alt-item {
  height: 360px;
  overflow: hidden;
}

/* Shoe Showcase Card */
.lifestyle-alt-item.shoe-card .lifestyle-img-wrap {
  background: #1A1210;
  position: relative;
}

.lifestyle-alt-item.shoe-card .shoe-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  padding: 0;
  transform: scale(1.0);
  transition: transform 0.6s ease;
  filter: none;
}

.lifestyle-alt-item.shoe-card:hover .shoe-showcase img {
  transform: scale(1.04);
}

.shoe-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,16,0.55) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.shoe-showcase .lifestyle-caption {
  z-index: 2;
  background: linear-gradient(to top, rgba(26,18,16,0.9), transparent);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 8rem 0;
  background: var(--bg-sand);
}

.testimonial-slider-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.5s ease forwards;
}

.testimonial-slide.active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
  font-family: var(--font-en);
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.testimonial-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--text-deep);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.testimonial-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-deep);
}

.author-detail {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: #F0A800;
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-warm);
  color: var(--text-deep);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================
   PRODUCT HIGHLIGHT SECTION
   ============================================ */
.product-highlight-section {
  padding: 8rem 0;
  background: var(--bg-warm);
}

.product-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.product-img-stack {
  position: relative;
}

.product-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-sand);
}

.product-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}

.product-img-main:hover img { transform: scale(1.04); }

.product-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--bg-warm);
  box-shadow: var(--shadow-lg);
}

.product-img-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.8rem;
  transition: transform 0.6s ease;
}

.product-img-float:hover img { transform: scale(1.08); }

.product-badge-float {
  position: absolute;
  top: 2rem;
  left: -1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 2;
}

.badge-title {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 700;
}

.product-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-deep);
  margin: 1rem 0 1.5rem;
}

.product-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.product-features-list {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.product-features-list li i {
  color: var(--accent);
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   FULLWIDTH BANNER
   ============================================ */
.banner-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

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

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0.62);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}

.banner-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: block;
}

.banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2rem;
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-section {
  padding: 8rem 0;
  background: var(--bg-sand);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.visit-address {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.visit-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.visit-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
}

.visit-highlight-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.visit-highlight-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.visit-highlight-text p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-deep);
}

.visit-info-cards {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.visit-info-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-warm);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.visit-info-card i {
  color: var(--accent);
  font-size: 0.85rem;
}

.visit-images {
  position: relative;
  padding-bottom: 2rem;
}

.visit-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}

.visit-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visit-img-main:hover img { transform: scale(1.04); }

.visit-img-float {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  border: 5px solid var(--bg-sand);
  box-shadow: var(--shadow-lg);
}

.visit-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visit-img-float:hover img { transform: scale(1.08); }

.visit-map-placeholder {
  background: var(--text-deep);
  border-radius: var(--radius-md);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  text-align: center;
}

.map-badge i {
  font-size: 2rem;
  color: var(--accent-light);
}

.map-badge span {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-warm);
}

.contact-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-deep);
  margin: 1rem 0 1.2rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-social p {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-en);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-deep);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: block;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer-logo-kr {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent-light);
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.footer-slogan {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
  font-family: var(--font-en);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(201, 111, 74, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-inner {
    grid-template-columns: 1fr;
  }

  .highlight-image {
    height: auto;
    min-height: 320px;
  }

  .highlight-image img {
    min-height: 320px;
  }

  .product-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-img-float {
    right: 1rem;
    bottom: -1rem;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit-img-float { right: 1rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-tag { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .lifestyle-item.lg { height: 300px; }
  .lifestyle-item.sm { height: 250px; }

  .lifestyle-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .lifestyle-alt-row { grid-template-columns: 1fr; }
  .lifestyle-alt-item { height: 260px; }

  .testimonial-card { padding: 2.5rem 2rem; }

  .product-img-float {
    width: 120px;
    height: 120px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-title { font-size: 2.8rem; }

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

  .lifestyle-col {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .testimonial-text { font-size: 1.2rem; }
  .highlight-text { padding: 2.5rem 2rem; }

  .problem-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .footer-links { grid-template-columns: 1fr; }
}
