/* ========================================
   DAMON KIMCHI — style.css
   Deep Burgundy + Warm Beige
   ======================================== */

/* --- Color Variables --- */
:root {
  --burgundy: #6B1D2A;
  --burgundy-dark: #4A0E18;
  --burgundy-light: #8B2E3E;
  --beige: #F5F0E8;
  --beige-light: #FAF8F4;
  --beige-warm: #EDE5D8;
  --black: #1A1A1A;
  --dark: #2C2420;
  --gray: #8A8078;
  --gray-light: #B5AEA5;
  --white: #FFFFFF;
  --serif: 'Noto Serif KR', 'Source Han Serif', Georgia, serif;
  --sans: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
  background: var(--beige-light);
}

a { color: inherit; text-decoration: none; transition: color 0.3s, opacity 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }

/* --- Loading Screen --- */
.fade-screen {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--burgundy-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}
.fade-screen.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-text {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--beige);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Mobile Navigation --- */
.mobile-navigation {
  position: fixed; top: 0; left: -100%;
  width: 85%; max-width: 380px; height: 100vh; z-index: 9999;
  background: var(--white);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-navigation.open { left: 0; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; border-bottom: 1px solid var(--beige-warm);
}
.mobile-nav-title { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: var(--gray); }
.mobile-nav-close { font-size: 28px; line-height: 1; }
.mobile-nav-links { padding: 24px; }
.mobile-nav-item {
  display: block; padding: 14px 0;
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  letter-spacing: 0.05em; border-bottom: 1px solid var(--beige);
}
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* --- Side Cart --- */
.sidecart-container {
  position: fixed; top: 0; right: -100%;
  width: 100%; max-width: 420px; height: 100vh; z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sidecart-container.open { right: 0; }
.sidecart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.sidecart-container.open .sidecart-overlay { opacity: 1; visibility: visible; }
.sidecart-panel {
  position: fixed; top: 0; right: -100%;
  width: 100%; max-width: 420px; height: 100vh;
  background: var(--white); display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sidecart-container.open .sidecart-panel { right: 0; }
.sidecart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--beige);
}
.sidecart-header h2 {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray);
}
.sidecart-close { font-size: 28px; }
.sidecart-body { padding: 60px 24px; text-align: center; }
.sidecart-body h3 { font-family: var(--serif); font-size: 18px; font-weight: 300; margin-bottom: 12px; }
.sidecart-body p { font-size: 13px; color: var(--gray); }

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; height: 52px; z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled { box-shadow: 0 1px 10px rgba(0,0,0,0.04); }

.header-inner {
  display: flex; align-items: center; height: 100%;
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; margin-right: 16px;
}
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--dark); transition: transform 0.3s; }

.logo {
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  letter-spacing: 0.12em; white-space: nowrap; color: var(--burgundy-dark);
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav > ul > li { padding: 0 20px; }
.main-nav > ul > li > a {
  display: block; padding: 14px 0;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark);
  transition: color 0.3s;
}
.main-nav > ul > li > a:hover { color: var(--burgundy); opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-icon { padding: 4px; color: var(--dark); transition: color 0.3s; }
.header-icon:hover { color: var(--burgundy); opacity: 1; }

/* --- Hero --- */
.hero-carousel { position: relative; width: 100%; height: 70vh; min-height: 500px; overflow: hidden; margin-top: 52px; }
.hero-slide { position: relative; width: 100%; height: 100%; }
.hero-image-wrap { position: absolute; inset: 0; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: var(--white);
  background: linear-gradient(to bottom, rgba(74, 14, 24, 0.2), rgba(74, 14, 24, 0.65));
}
.hero-subtitle {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px;
  opacity: 0.85;
}
.hero-title {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 1.4; margin-bottom: 32px;
}
.hero-brand { font-weight: 600; }
.hero-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7); padding: 14px 40px;
  color: var(--white); transition: background 0.3s, border-color 0.3s;
}
.hero-cta:hover { background: var(--white); color: var(--burgundy-dark); border-color: var(--white); opacity: 1; }

/* --- Brand Summary --- */
.home-brand-summary { padding: 80px 32px; text-align: center; background: var(--white); }
.brand-summary-inner { max-width: 700px; margin: 0 auto; }
.brand-lead {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  line-height: 1.8; margin-bottom: 20px; color: var(--dark);
}
.brand-desc {
  font-size: 14px; color: var(--gray); line-height: 1.9; margin-bottom: 48px;
}
.brand-badges { display: flex; justify-content: center; gap: 48px; }
.badge { text-align: center; }
.badge-num {
  display: block; font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: var(--burgundy); letter-spacing: 0.04em;
}
.badge-label { display: block; font-size: 11px; color: var(--gray); letter-spacing: 0.1em; margin-top: 4px; }

/* --- Products Section --- */
.home-products { max-width: 1400px; margin: 0 auto; padding: 80px 32px; }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 48px; border-bottom: 1px solid var(--beige-warm); padding-bottom: 16px;
}
.section-header h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--dark);
}
.section-link {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em;
  color: var(--burgundy);
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-image-wrap {
  display: block; overflow: hidden; margin-bottom: 16px;
  background: var(--beige); position: relative;
}
.product-image-wrap img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--burgundy); color: var(--white); padding: 4px 10px;
}
.main-tag { background: var(--dark); }
.premium-tag { background: var(--burgundy-dark); font-size: 9px; }
.product-info { text-align: center; }
.product-name {
  font-family: var(--serif); font-size: 15px; font-weight: 400;
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.product-copy { font-size: 12px; color: var(--gray); margin-bottom: 8px; line-height: 1.6; }
.product-price {
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  color: var(--burgundy-dark); letter-spacing: 0.02em;
}
.price-unit { font-size: 13px; font-weight: 400; margin-left: 2px; }
.product-card.featured .product-name { font-weight: 600; }

/* --- Brand Section --- */
.brand-section { padding: 80px 32px; background: var(--white); }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.brand-image-block { position: relative; overflow: hidden; }
.brand-image-block img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s ease; }
.brand-image-block:hover img { transform: scale(1.04); }
.brand-image-caption {
  padding: 24px 0; text-align: center;
}
.brand-image-caption h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  margin-bottom: 8px; color: var(--dark);
}
.brand-image-caption p { font-size: 13px; color: var(--gray); }
.brand-story {
  text-align: center; max-width: 600px; margin: 0 auto; padding: 40px 0;
  border-top: 1px solid var(--beige-warm);
}
.brand-story p {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--burgundy); line-height: 1.9; font-style: italic;
}

/* --- Journal Section --- */
.journal-section { padding: 80px 32px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.journal-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.journal-card.visible { opacity: 1; transform: translateY(0); }
.journal-image-wrap { overflow: hidden; margin-bottom: 20px; }
.journal-image-wrap img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 0.8s ease;
}
.journal-card:hover .journal-image-wrap img { transform: scale(1.05); }
.journal-info { padding: 0 4px; }
.journal-category {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--burgundy);
  display: block; margin-bottom: 8px;
}
.journal-info h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  line-height: 1.5; margin-bottom: 8px;
}
.journal-info p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* --- Wholesale Section --- */
.wholesale-section { padding: 100px 32px; background: var(--white); }
.wholesale-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.wholesale-inner h2 {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  margin-bottom: 16px; color: var(--dark);
}
.wholesale-lead { font-family: var(--serif); font-size: 16px; margin-bottom: 12px; color: var(--dark); }
.wholesale-desc { font-size: 13px; color: var(--gray); margin-bottom: 40px; }
.wholesale-form { text-align: left; }
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.form-row input { flex: 1; }
.wholesale-form input, .wholesale-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--beige-warm); background: var(--beige-light);
  font-size: 14px; outline: none;
  transition: border-color 0.3s;
}
.wholesale-form input:focus, .wholesale-form textarea:focus { border-color: var(--burgundy-light); }
.wholesale-form textarea { min-height: 120px; resize: vertical; margin-bottom: 20px; }
.wholesale-submit {
  display: block; width: 100%; padding: 16px;
  background: var(--burgundy-dark); color: var(--white);
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.3s;
}
.wholesale-submit:hover { background: var(--burgundy); opacity: 1; }

/* --- Footer --- */
.site-footer { padding: 60px 32px 32px; background: var(--dark); color: var(--beige-light); }
.footer-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.footer-logo { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: 0.12em; margin-bottom: 8px; }
.footer-slogan { font-family: var(--serif); font-size: 13px; color: var(--gray-light); margin-bottom: 32px; }
.footer-nav { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; }
.footer-nav a { font-size: 12px; letter-spacing: 0.08em; color: var(--beige-warm); }
.footer-nav a:hover { color: var(--white); opacity: 1; }
.footer-info { margin-bottom: 32px; }
.footer-info p { font-size: 12px; color: var(--gray-light); line-height: 1.8; }
.footer-copy { font-size: 11px; color: var(--gray); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }

/* --- Kakao Button --- */
.kakao-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #FEE500; color: #3C1E1E;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.kakao-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); opacity: 1; }

/* --- Scroll Animations --- */
.scroll-animate { opacity: 1 !important; transform: none !important; transition: none !important; }
.scroll-animate.visible { opacity: 1 !important; transform: none !important; }
.product-card, .journal-card, .journal-card-full { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .main-nav > ul > li { padding: 0 14px; }
  .hero-title { font-size: 40px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .brand-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-carousel { height: 60vh; min-height: 400px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 11px; }
  .section-header h2 { font-size: 22px; }
  .brand-badges { gap: 28px; }
  .badge-num { font-size: 28px; }
  .brand-lead { font-size: 18px; }
  .form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .logo { font-size: 12px; letter-spacing: 0.08em; }
  .hero-carousel { height: 50vh; min-height: 320px; }
  .hero-title { font-size: 26px; }
  .hero-cta { padding: 12px 28px; font-size: 11px; }
  .home-products, .brand-section, .journal-section, .wholesale-section, .home-brand-summary { padding: 48px 16px; }
  .product-grid { gap: 12px; }
  .product-name { font-size: 13px; }
  .product-copy { font-size: 11px; }
  .product-price { font-size: 14px; }
  .footer-nav { flex-direction: column; align-items: center; gap: 8px; }
}

/* ========================================
   Sub-page Styles
   ======================================== */

/* --- Page Hero --- */
.page-hero {
  padding: 140px 32px 60px;
  text-align: center;
  background: var(--white);
  margin-top: 52px;
}
.page-hero h1 {
  font-family: var(--serif); font-size: 40px; font-weight: 300;
  letter-spacing: 0.08em; color: var(--dark); margin-bottom: 12px;
}
.page-hero p {
  font-size: 14px; color: var(--gray); letter-spacing: 0.06em;
}

/* --- Section Title Block --- */
.section-title-block {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  text-align: center; margin-bottom: 40px; color: var(--dark);
}

/* --- Filter Buttons --- */
.shop-filter, .journal-filter {
  padding: 24px 32px; text-align: center; background: var(--white);
}
.filter-inner {
  display: flex; justify-content: center; gap: 12px;
}
.filter-btn {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; border: 1px solid var(--beige-warm);
  background: transparent; color: var(--gray);
  transition: all 0.3s; cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--burgundy); color: var(--white); border-color: var(--burgundy); opacity: 1;
}

/* --- Shop Page --- */
.shop-products {
  max-width: 1400px; margin: 0 auto; padding: 40px 32px 60px;
}
.shop-info {
  max-width: 1200px; margin: 0 auto; padding: 40px 32px 60px;
}
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.info-item {
  text-align: center; padding: 32px 20px;
  background: var(--white); border: 1px solid var(--beige-warm);
}
.info-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.info-item h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  margin-bottom: 8px; color: var(--dark);
}
.info-item p { font-size: 12px; color: var(--gray); }

/* --- Brand Page --- */
.brand-story-section {
  padding: 80px 32px; background: var(--white); text-align: center;
}
.brand-story-inner { max-width: 700px; margin: 0 auto; }
.brand-story-text {
  font-family: var(--serif); font-size: 17px; font-weight: 300;
  line-height: 2; color: var(--dark); margin-bottom: 16px;
}
.brand-naming {
  padding: 60px 32px; text-align: center;
}
.naming-inner { max-width: 600px; margin: 0 auto; }
.naming-inner h3 {
  font-family: var(--serif); font-size: 14px; font-weight: 400;
  letter-spacing: 0.15em; color: var(--gray); margin-bottom: 32px;
}
.naming-grid { display: flex; justify-content: center; gap: 48px; margin-bottom: 24px; }
.naming-char {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  color: var(--burgundy); display: block; margin-bottom: 8px;
}
.naming-item p { font-size: 14px; color: var(--dark); }
.naming-desc { font-size: 13px; color: var(--gray); }
.brand-factory {
  padding: 60px 32px; background: var(--white);
}
.factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
.factory-block img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.factory-caption { padding: 24px 0; text-align: center; }
.factory-caption h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  margin-bottom: 8px;
}
.factory-caption p { font-size: 13px; color: var(--gray); }
.brand-process {
  padding: 80px 32px; text-align: center;
}
.process-inner { max-width: 1000px; margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.step { padding: 24px 16px; border-top: 2px solid var(--beige-warm); }
.step-num {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--burgundy-light); display: block; margin-bottom: 12px;
}
.step h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  margin-bottom: 8px;
}
.step p { font-size: 12px; color: var(--gray); line-height: 1.7; }
.brand-certs {
  padding: 60px 32px; background: var(--dark); color: var(--beige-light);
}
.certs-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto; text-align: center;
}
.cert { padding: 24px 16px; }
.cert-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.cert h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  margin-bottom: 8px; color: var(--beige);
}
.cert p { font-size: 12px; color: var(--gray-light); line-height: 1.6; }

/* --- Journal Page --- */
.journal-page-grid {
  max-width: 1000px; margin: 0 auto; padding: 40px 32px 80px;
}
.journal-card-full {
  margin-bottom: 60px; opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.journal-card-full.visible { opacity: 1; transform: translateY(0); }
.journal-card-full a { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.journal-card-full.reverse a { direction: rtl; }
.journal-card-full.reverse a > * { direction: ltr; }
.journal-full-image img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3;
  transition: transform 0.8s ease;
}
.journal-card-full:hover .journal-full-image img { transform: scale(1.04); }
.journal-full-info {
  padding: 40px 32px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.journal-date {
  font-size: 12px; color: var(--gray-light); margin-bottom: 12px; display: block;
}
.journal-full-info h2 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  line-height: 1.5; margin-bottom: 12px;
}
.journal-full-info p {
  font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 16px;
}
.journal-more {
  font-size: 12px; letter-spacing: 0.1em; color: var(--burgundy);
  font-weight: 500;
}

/* --- Wholesale Page --- */
.ws-benefits { padding: 80px 32px; background: var(--white); text-align: center; }
.benefits-inner { max-width: 1000px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
  padding: 32px; border: 1px solid var(--beige-warm); text-align: left;
  transition: border-color 0.3s;
}
.benefit-item:hover { border-color: var(--burgundy-light); }
.benefit-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--burgundy-light); display: block; margin-bottom: 12px;
}
.benefit-item h4 {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  margin-bottom: 8px;
}
.benefit-item p { font-size: 13px; color: var(--gray); line-height: 1.7; }
.ws-target { padding: 80px 32px; text-align: center; }
.target-inner { max-width: 1000px; margin: 0 auto; }
.target-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.target-item {
  padding: 32px; background: var(--white); text-align: center;
}
.target-item h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  margin-bottom: 8px;
}
.target-item p { font-size: 13px; color: var(--gray); }
.ws-form-section { padding: 80px 32px; background: var(--white); text-align: center; }
.ws-form-inner { max-width: 600px; margin: 0 auto; }
.ws-form-desc { font-size: 14px; color: var(--gray); margin-bottom: 32px; }
.wholesale-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--beige-warm);
  background: var(--beige-light); font-family: var(--sans); font-size: 14px;
  outline: none; appearance: none; cursor: pointer;
  transition: border-color 0.3s;
}
.wholesale-form select:focus { border-color: var(--burgundy-light); }
.ws-contact {
  padding: 60px 32px; text-align: center;
}
.contact-inner { max-width: 400px; margin: 0 auto; }
.contact-inner h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  margin-bottom: 20px;
}
.contact-inner p { font-size: 14px; color: var(--gray); line-height: 2; }

/* --- Active Nav Link --- */
.main-nav a.active { color: var(--burgundy); opacity: 1; font-weight: 600; }

/* --- FAQ & Extra Wholesale Styles --- */
.ws-intro {
  font-size: 15px; color: var(--gray); text-align: center;
  max-width: 600px; margin: 0 auto 40px; line-height: 1.8;
}
.ws-process { padding: 80px 32px; background: var(--beige-light); }
.ws-testimonials { padding: 80px 32px; background: var(--white); }
.ws-faq { padding: 80px 32px; background: var(--white); text-align: center; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-list .faq-item {
  padding: 24px 0; border-bottom: 1px solid var(--beige-warm);
  text-align: left;
}
.faq-list .faq-item:last-child { border-bottom: none; }
.faq-item h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  margin-bottom: 8px; color: var(--burgundy-dark);
}
.faq-item p {
  font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 8px;
}
.benefit-num.qa {
  font-family: var(--sans) !important; font-size: 13px !important;
  font-weight: 400 !important; color: var(--dark) !important;
  letter-spacing: 0 !important;
  line-height: 1.6;
  display: block; text-align: left;
  margin-bottom: 16px;
  font-style: italic;
}

/* ========================================
   Sub-page Responsive
   ======================================== */
@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 40px; }
  .page-hero h1 { font-size: 30px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .certs-inner { grid-template-columns: repeat(2, 1fr); }
  .journal-card-full a, .journal-card-full.reverse a { grid-template-columns: 1fr; direction: ltr; }
  .journal-full-info { padding: 24px 16px; }
  .benefits-grid, .target-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 24px; }
  .section-title-block { font-size: 22px; }
  .naming-grid { gap: 32px; }
  .naming-char { font-size: 56px; }
  .filter-inner { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: 10px; }
}
