/* ========================================
   ÉLEVÉE — Atelier Élégance
   Luxury Fashion Brand Design System
   厦门如出贸易有限公司
   ======================================== */

/* ===== CSS Variables ===== */
:root {
  /* Colors — Warm Ivory & Champagne Gold */
  --ivory: #F7F3EE;
  --cream: #EFE9E1;
  --sand: #E8DFD3;
  --espresso: #2B231D;
  --charcoal: #1A1612;
  --gold: #B8945F;
  --gold-light: #D4B886;
  --gold-dark: #9A7B4A;
  --gold-glow: rgba(184, 148, 95, 0.12);
  --blush: #D4B5A8;
  --burgundy: #5C1A2B;
  --stone: #8B7E6B;
  --stone-light: #A89B88;
  --white: #FFFFFF;
  --text-dark: #2B231D;
  --text-mid: #6B5F50;
  --text-light: #FFFFFF;
  --text-dim: #9A8E7E;
  --border: #E0D8CC;
  --border-dark: rgba(255,255,255,0.1);
  --overlay: rgba(26, 22, 18, 0.5);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --font-body: 'Jost', 'Noto Sans SC', sans-serif;
  --font-cn: 'Noto Serif SC', serif;
  --font-cn-body: 'Noto Sans SC', sans-serif;

  /* Spacing */
  --header-h: 88px;
  --section-py: 120px;
  --container-max: 1320px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-base: 0.4s ease;
  --t-slow: 0.7s ease;
  --t-cubic: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== Layout ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--section-py) 0; }
.section-sm { padding: 80px 0; }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-dark { background: var(--charcoal); color: var(--text-light); }
.bg-espresso { background: var(--espresso); color: var(--text-light); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-title .italic { font-style: italic; color: var(--gold); }
.bg-dark .section-title, .bg-espresso .section-title { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}
.bg-dark .section-desc, .bg-espresso .section-desc { color: var(--text-dim); }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.cn-text { font-family: var(--font-cn-body); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all var(--t-base);
  background: transparent;
}
.header.scrolled {
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  transition: color var(--t-base);
}
.header.scrolled .logo { color: var(--text-dark); }
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-style: italic;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: var(--font-cn-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 2px;
}

.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-base);
  text-transform: uppercase;
}
.header.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.header-cta { display: flex; align-items: center; gap: 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--t-cubic);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 18px 48px; font-size: 0.85rem; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: transparent;
  color: var(--charcoal);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-text {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-text::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}
.btn-text:hover::after { width: 40px; }

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  z-index: 1001;
}
.menu-toggle span {
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all var(--t-base);
}
.header.scrolled .menu-toggle span { background: var(--text-dark); }
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); width: 28px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); width: 28px; }

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--t-cubic);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--t-base);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 32px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,0.3) 0%, rgba(26,22,18,0.5) 60%, rgba(26,22,18,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}
.hero-text { max-width: 700px; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-in 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-in-up 1s ease 0.5s forwards;
}
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-in-up 1s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in-up 1s ease 0.9s forwards;
}
.hero-nav {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-dot {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--t-base);
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--gold); width: 60px; }
.hero-counter {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}
.hero-counter .current { color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Animations ===== */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== Brand Intro Section ===== */
.brand-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.brand-intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.brand-intro-image:hover img { transform: scale(1.05); }
.brand-intro-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.brand-intro-content .section-title { margin-bottom: 28px; }
.brand-intro-content p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}
.brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.brand-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.brand-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 10px;
}

/* ===== Product Categories ===== */
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.product-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-cat-card:hover img { transform: scale(1.08); }
.product-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,22,18,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background var(--t-base);
}
.product-cat-card:hover .product-cat-overlay {
  background: linear-gradient(180deg, rgba(26,22,18,0.2) 0%, rgba(26,22,18,0.9) 100%);
}
.product-cat-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.product-cat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--t-base);
}
.product-cat-card:hover .product-cat-desc {
  transform: translateY(0);
  opacity: 1;
}
.product-cat-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== Store Map Section ===== */
.store-map-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.store-cities {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.store-city-card {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  cursor: pointer;
}
.store-city-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(184, 148, 95, 0.1);
  transform: translateY(-2px);
}
.store-city-card.active {
  border-color: var(--gold);
  background: var(--white);
}
.store-city-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.store-city-count {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.store-map-visual {
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-map-visual svg { width: 80%; height: 80%; }

/* ===== Partnership CTA ===== */
.partnership-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.partnership-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--espresso) 100%);
}
.partnership-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--gold-glow), transparent);
}
.partnership-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}
.partnership-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.partnership-cta-title .italic { font-style: italic; color: var(--gold-light); }
.partnership-cta-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ===== Latest News/Events ===== */
.news-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  cursor: pointer;
  transition: transform var(--t-base);
}
.news-card:hover { transform: translateY(-6px); }
.news-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
}
.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.08); }
.news-card-date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== Page Banner ===== */
.page-banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,22,18,0.55);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.page-banner-title .italic { font-style: italic; color: var(--gold-light); }
.page-banner-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===== Product Filter ===== */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--t-base);
  cursor: pointer;
}
.filter-tab:hover { color: var(--gold); border-color: var(--gold); }
.filter-tab.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* ===== Product Cards (Grid) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-item {
  cursor: pointer;
}
.product-item-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--cream);
  position: relative;
}
.product-item-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-item:hover .product-item-image img { transform: scale(1.08); }
.product-item-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--gold);
}
.product-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.product-item-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 56px;
  align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content {
  padding: 0 32px;
}
.timeline-item:nth-child(odd) .timeline-content:first-child {
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content:first-child {
  visibility: hidden;
}
.timeline-item:nth-child(even) .timeline-content:last-child {
  text-align: left;
}
.timeline-item:nth-child(odd) .timeline-content:last-child {
  visibility: hidden;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 6px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--ivory);
}

/* ===== Store Cards ===== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--t-base);
}
.store-card:hover {
  box-shadow: 0 12px 50px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.store-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.store-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.store-card:hover .store-card-image img { transform: scale(1.06); }
.store-card-body { padding: 32px; }
.store-card-city {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.store-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.store-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.store-card-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
}
.store-card-info-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* ===== Partnership Types ===== */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.partnership-card {
  padding: 48px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--t-base);
}
.partnership-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(184, 148, 95, 0.1);
}
.partnership-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}
.partnership-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.partnership-card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}
.partnership-card-features {
  text-align: left;
  margin-bottom: 28px;
}
.partnership-card-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.partnership-card-features li::before {
  content: '—';
  color: var(--gold);
}

/* ===== News Article Cards ===== */
.news-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.news-article-card {
  cursor: pointer;
  transition: transform var(--t-base);
}
.news-article-card:hover { transform: translateY(-6px); }
.news-article-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 24px;
}
.news-article-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-article-card:hover .news-article-image img { transform: scale(1.06); }
.news-article-cat {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.news-article-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-article-excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-article-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { padding-right: 32px; }
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}
.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
}
.contact-info-value a { transition: color var(--t-base); }
.contact-info-value a:hover { color: var(--gold); }

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: border-color var(--t-base);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-bottom-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 16px;
  font-weight: 300;
}
.form-success {
  display: none;
  padding: 16px;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.form-success.show { display: block; }

/* ===== WeChat QR ===== */
.wechat-section {
  text-align: center;
  padding: 48px;
  background: var(--cream);
  border: 1px solid var(--border);
}
.wechat-qr {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.wechat-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.wechat-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
}

/* ===== Careers Section ===== */
.careers-contact {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 48px;
  text-align: center;
}
.careers-contact-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.careers-contact-desc {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 32px;
}
.careers-contact-person {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.careers-contact-phone {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.careers-contact-phone a { transition: color var(--t-base); }
.careers-contact-phone a:hover { color: var(--gold-light); }

.job-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.job-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.job-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.job-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.job-card-dept {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.job-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}
.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.job-tag {
  font-size: 0.72rem;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
}
.value-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.value-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.value-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

/* ===== Designer Philosophy ===== */
.philosophy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.philosophy-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  padding-left: 32px;
}
.philosophy-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -10px;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.philosophy-author {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding: 80px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo-mark { margin-bottom: 20px; }
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
  transition: color var(--t-base);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 300;
  transition: color var(--t-base);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===== Decorative Elements ===== */
.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
}
.divider-gold.left { margin-left: 0; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .hero-content { padding: 0 32px; }
  .brand-intro, .store-map-section, .contact-grid, .philosophy-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-grid-3, .news-grid-3, .store-grid, .partnership-grid, .news-article-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .job-listing { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content:first-child,
  .timeline-item:nth-child(even) .timeline-content:first-child {
    visibility: visible;
    text-align: left;
    padding: 0 0 0 20px;
  }
  .timeline-item:nth-child(odd) .timeline-content:last-child,
  .timeline-item:nth-child(even) .timeline-content:last-child {
    display: none;
  }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero-nav, .hero-scroll { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .product-grid-3, .news-grid-3, .store-grid, .partnership-grid, .news-article-grid, .values-grid, .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 32px 24px; }
  .careers-contact { padding: 48px 24px; }
  .brand-stats { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
}
