*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8975A;
  --gold-light: #D4B483;
  --gold-pale: #F5EDD9;
  --gold-dark: #8B6F3A;
  --black: #0E0E0E;
  --off-white: #FAF8F4;
  --cream: #F7F3EE;
  --text-main: #1A1A1A;
  --text-muted: #5A5046;
  --text-light: #8A7E72;
  --border: rgba(184,151,90,0.2);
  --border-light: rgba(0,0,0,0.06);
  --serif-en: 'Cormorant Garamond', Georgia, serif;
  --serif-cn: 'Noto Serif SC', serif;
  --sans: 'Noto Sans SC', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--text-main);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  font-size: 15px;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.15); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Nav (k-uno inspired: clean, transparent over hero) ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  transition: all 0.4s ease;
}
nav.nav-transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav.nav-transparent .nav-logo-text .brand-en { color: #fff; }
nav.nav-transparent .nav-links a { color: rgba(255,255,255,0.7); }
nav.nav-transparent .nav-links a:hover,
nav.nav-transparent .nav-links a.active { color: var(--gold-light); }
nav.nav-transparent .nav-cta { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
nav.nav-transparent .nav-cta:hover { background: var(--gold); border-color: var(--gold); }
nav.nav-transparent .nav-toggle span { background: #fff; }

nav.nav-solid {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand-en {
  font-family: var(--serif-en);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-main);
  line-height: 1.1;
  transition: color 0.3s;
}
.nav-logo-text .brand-cn {
  font-family: var(--serif-cn);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  font-family: var(--sans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 300;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: #fff; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-main);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── Hero Video (Homepage) ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 72px;
  background: #000;
}
.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 32px;
  max-width: 860px;
}
.hero-tagline {
  font-family: var(--serif-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6em;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  opacity: 0.8;
}
.hero-tagline::before, .hero-tagline::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}
.hero-title {
  font-family: var(--serif-en);
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 10px;
}
.hero-title-cn {
  font-family: var(--serif-cn);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: 0.6em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 2;
}
.hero-philosophy {
  font-family: var(--serif-cn);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  opacity: 0.65;
  margin-bottom: 44px;
  font-style: italic;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  font-size: 11px; letter-spacing: 0.2em;
  padding: 14px 40px;
  background: var(--gold);
  color: #fff;
  border: none; cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 300;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  font-size: 11px; letter-spacing: 0.2em;
  padding: 14px 40px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 300;
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-stats {
  position: absolute; bottom: 64px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 64px;
  z-index: 3;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif-en);
  font-size: 28px; font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  font-family: var(--sans); font-weight: 300;
}
.scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.35; z-index: 3;
}
.scroll-hint span { font-size: 9px; letter-spacing: 0.35em; color: #fff; font-family: var(--sans); }
.scroll-arrow {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── Section Base (k-uno: generous whitespace, refined typography) ─── */
section { padding: 100px 48px; }
.section-label {
  font-family: var(--serif-en);
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::after {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.section-label-cn {
  font-family: var(--serif-cn);
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif-cn);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-title-en {
  font-family: var(--serif-en);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-main);
}
.section-sub {
  font-size: 14px; font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 2;
}
.divider-gold {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

/* ─── Page Hero Banner (Sub-pages) ─── */
.page-hero {
  min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 780px;
}
.page-hero-label {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--serif-cn);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero-title-en {
  font-family: var(--serif-en);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.page-hero-desc {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 2;
}

/* ─── Brand Story ─── */
#story { background: #fff; }
.story-inner { max-width: 1100px; margin: 0 auto; }
.story-header { text-align: center; margin-bottom: 72px; }
.story-header .section-label { justify-content: center; }
.story-header .section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.story-header .section-sub { margin: 0 auto; }
.story-timeline {
  max-width: 780px; margin: 0 auto;
  position: relative;
}
.story-timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.2;
}
.timeline-item {
  display: flex; align-items: flex-start;
  margin-bottom: 56px; position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: calc(50% - 44px);
  padding: 32px 28px;
  background: var(--off-white);
}
.timeline-dot {
  position: absolute; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: 38px; z-index: 2;
}
.timeline-year {
  font-family: var(--serif-en);
  font-size: 26px; font-weight: 300;
  color: var(--gold); letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--serif-cn);
  font-size: 16px; font-weight: 400;
  color: var(--text-main); margin-bottom: 10px;
}
.timeline-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 2;
}

/* ─── Philosophy ─── */
#philosophy { background: var(--black); color: #fff; text-align: center; }
.philosophy-inner { max-width: 860px; margin: 0 auto; }
.philosophy-inner .section-label { justify-content: center; }
.philosophy-inner .section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.philosophy-quote {
  font-family: var(--serif-cn);
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.philosophy-quote em { color: var(--gold-light); font-style: normal; }
.philosophy-sub {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 2;
  max-width: 600px; margin: 0 auto 52px;
}
.philosophy-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 60px;
}
.phil-value {
  padding: 44px 32px;
  border: 1px solid rgba(184,151,90,0.12);
  transition: border-color 0.3s;
}
.phil-value:hover { border-color: rgba(184,151,90,0.4); }
.phil-value-icon {
  font-family: var(--serif-cn);
  font-size: 24px; color: var(--gold);
  margin-bottom: 16px; opacity: 0.6;
}
.phil-value-title {
  font-family: var(--serif-cn);
  font-size: 15px; font-weight: 400;
  color: #fff; margin-bottom: 10px; letter-spacing: 0.1em;
}
.phil-value-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 2;
}

/* ─── Services (k-uno: service-first, clean cards) ─── */
#services { background: var(--off-white); }
.services-intro {
  max-width: 1100px; margin: 0 auto 64px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
}
.services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.service-card {
  background: #fff;
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--serif-en);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold); opacity: 0.5;
  margin-bottom: 24px;
}
.service-icon { width: 40px; height: 40px; margin-bottom: 24px; }
.service-name {
  font-family: var(--serif-cn);
  font-size: 18px; font-weight: 400;
  color: var(--text-main); margin-bottom: 6px;
}
.service-name-en {
  font-family: var(--serif-en);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--text-light); margin-bottom: 20px;
}
.service-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 2;
}
.service-highlights {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-tag {
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--gold); padding: 3px 10px;
  border: 1px solid rgba(184,151,90,0.25);
  font-weight: 300;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--gold); text-decoration: none;
  font-family: var(--sans); font-weight: 300;
}
.service-link::after { content: '\2192'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ─── Signature Series ─── */
#series { background: var(--gold-pale); text-align: center; }
.series-inner { max-width: 960px; margin: 0 auto; }
.series-label { justify-content: center; }
.series-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.series-quote {
  font-family: var(--serif-cn);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300; color: var(--text-main);
  letter-spacing: 0.06em; line-height: 1.85;
  max-width: 660px; margin: 0 auto 36px;
}
.series-desc {
  font-size: 13px; font-weight: 300; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 20px; line-height: 2;
}
.fox-icon { width: 72px; height: 72px; margin: 0 auto 32px; }
.series-traits {
  display: flex; justify-content: center;
  gap: 40px; margin: 32px 0 44px;
}
.series-trait { text-align: center; }
.series-trait-icon { font-size: 22px; margin-bottom: 6px; opacity: 0.5; }
.series-trait-text {
  font-family: var(--serif-cn);
  font-size: 13px; font-weight: 400;
  color: var(--text-main); letter-spacing: 0.1em;
}
.series-trait-sub { font-size: 10px; color: var(--text-light); margin-top: 3px; }

/* ─── Craftsmanship ─── */
#craftsmanship { background: #fff; }
.craft-inner { max-width: 1100px; margin: 0 auto; }
.craft-header { text-align: center; margin-bottom: 64px; }
.craft-header .section-label { justify-content: center; }
.craft-header .section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.craft-header .section-sub { margin: 0 auto; }
.craft-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 48px;
}
.craft-card { text-align: center; padding: 40px 28px; position: relative; }
.craft-card::after {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--gold); opacity: 0.3;
  margin: 20px auto 0;
}
.craft-card-num {
  font-family: var(--serif-en);
  font-size: 36px; font-weight: 300;
  color: var(--gold); opacity: 0.2; margin-bottom: 12px;
}
.craft-card-title {
  font-family: var(--serif-cn);
  font-size: 16px; font-weight: 400;
  color: var(--text-main); margin-bottom: 12px; letter-spacing: 0.08em;
}
.craft-card-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 2;
}

/* ─── Advantages ─── */
#advantages { background: var(--black); color: #fff; }
.adv-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.adv-left .section-title { color: #fff; }
.adv-left .section-sub { color: rgba(255,255,255,0.4); }
.adv-left .section-label { color: var(--gold); }
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.adv-item {
  padding: 28px 24px;
  border: 1px solid rgba(184,151,90,0.15);
  transition: border-color 0.3s;
}
.adv-item:hover { border-color: rgba(184,151,90,0.5); }
.adv-icon { width: 32px; height: 1px; background: var(--gold); margin-bottom: 16px; }
.adv-title {
  font-family: var(--serif-cn);
  font-size: 14px; font-weight: 400;
  color: #fff; margin-bottom: 8px;
}
.adv-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 2;
}

/* ─── Customer Stories (Homepage) ─── */
.customer-stories { background: #fff; }
.stories-inner { max-width: 1100px; margin: 0 auto; }
.stories-header { text-align: center; margin-bottom: 64px; }
.stories-header .section-label { justify-content: center; }
.stories-header .section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.stories-header .section-sub { margin: 0 auto; }
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  background: var(--off-white);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.story-card-category {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 16px;
  font-weight: 400;
}
.story-card-quote {
  font-family: var(--serif-cn);
  font-size: 14px; font-weight: 300;
  color: var(--text-main); line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
}
.story-card-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.story-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-cn);
  font-size: 14px;
  color: var(--gold);
}
.story-card-name {
  font-size: 12px; font-weight: 400;
  color: var(--text-main);
}
.story-card-detail {
  font-size: 12px; font-weight: 300;
  color: var(--text-light); margin-top: 2px;
}

/* ─── Experience (Global Service) ─── */
#experience { background: var(--off-white); }
.exp-inner { max-width: 1100px; margin: 0 auto; }
.exp-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 56px; gap: 32px;
}
.exp-global {
  text-align: center; padding: 40px;
  border: 1px solid var(--border); background: #fff;
}
.exp-global-title {
  font-family: var(--serif-cn);
  font-size: 15px; font-weight: 400;
  color: var(--text-main); letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.exp-global-items {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.exp-global-item {
  font-size: 12px; font-weight: 300;
  color: var(--text-muted); line-height: 1.9;
}
.exp-global-item strong { color: var(--gold); font-weight: 400; }

/* ─── News Section ─── */
.news-section { background: var(--cream); }
.news-inner { max-width: 1100px; margin: 0 auto; }
.news-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 24px;
}
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.news-card-image {
  width: 100%; aspect-ratio: 16/9;
  background: var(--gold-pale);
  overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.04); }
.news-card-body { padding: 24px; }
.news-card-date {
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--text-light); margin-bottom: 8px;
}
.news-card-title {
  font-family: var(--serif-cn);
  font-size: 15px; font-weight: 400;
  color: var(--text-main); line-height: 1.6;
  margin-bottom: 8px;
}
.news-card-excerpt {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--gold); text-decoration: none;
  font-weight: 300;
}
.news-link::after { content: '\2192'; font-size: 10px; }

/* ─── Contact ─── */
#contact { background: var(--black); color: #fff; }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start;
}
.contact-left .section-title { color: #fff; }
.contact-left .section-label { color: var(--gold); }
.contact-left .section-sub { color: rgba(255,255,255,0.4); max-width: 400px; }
.contact-info { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-child { border: none; }
.contact-item-label {
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--gold); min-width: 72px; padding-top: 2px;
}
.contact-item-val {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.9;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 300;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #1A1A1A; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  font-size: 11px; letter-spacing: 0.2em;
  padding: 14px 36px;
  background: var(--gold); color: #fff;
  border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 300;
  transition: background 0.25s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-required { color: var(--gold); }
.form-group input.field-error,
.form-group select.field-error {
  border-color: #C8463A;
}
.form-error-msg {
  font-size: 10px;
  color: #C8463A;
  margin-top: 2px;
  display: none;
}
.form-error-msg.show { display: block; }

/* ─── Toast notification ─── */
#toast-container {
  position: fixed; top: 90px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  padding: 16px 24px;
  font-size: 13px; font-weight: 300; color: #fff;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 360px;
}
.toast.show { transform: translateX(0); }
.toast-success { background: linear-gradient(135deg, #2D5A3D, #1A3D28); border-left: 3px solid var(--gold); }
.toast-error { background: linear-gradient(135deg, #5A2D2D, #3D1A1A); border-left: 3px solid #C8463A; }

/* ─── Service Detail Page ─── */
.service-detail-intro {
  max-width: 1100px; margin: 0 auto 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.service-detail-intro.reverse { direction: rtl; }
.service-detail-intro.reverse > * { direction: ltr; }
.service-detail-text .section-sub { max-width: none; }
.service-detail-features {
  margin-top: 28px; display: flex; flex-direction: column; gap: 12px;
}
.service-detail-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail-feature:last-child { border: none; }
.feature-icon {
  width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}
.feature-text {
  font-size: 14px; font-weight: 300;
  color: var(--text-muted); line-height: 1.9;
}
.feature-text strong { color: var(--text-main); font-weight: 400; }
.service-detail-image {
  width: 100%; aspect-ratio: 4/3;
  background: var(--gold-pale); overflow: hidden;
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── Case Gallery ─── */
.gallery-section { background: var(--off-white); }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.gallery-header .section-sub { margin: 0 auto; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: #fff; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.55), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-family: var(--serif-cn);
  font-size: 12px; color: #fff;
  font-weight: 300; letter-spacing: 0.06em;
}

/* ─── Process Section (sub-pages) ─── */
.process-section { background: #fff; }
.process-inner { max-width: 960px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-label { justify-content: center; }
.process-header .section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.process-header .section-sub { margin: 0 auto; }
.process-timeline {
  position: relative; max-width: 660px; margin: 0 auto;
}
.process-timeline::before {
  content: ''; position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,151,90,0.1));
}
.process-step {
  display: flex; gap: 28px;
  margin-bottom: 44px; position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-step-dot {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
  background: var(--off-white); z-index: 2;
}
.process-step-dot span {
  font-family: var(--serif-en);
  font-size: 14px; font-weight: 300;
  color: var(--gold); letter-spacing: 0.04em;
}
.process-step-content { padding-top: 6px; }
.process-step-title {
  font-family: var(--serif-cn);
  font-size: 16px; font-weight: 400;
  color: var(--text-main); margin-bottom: 10px; letter-spacing: 0.08em;
}
.process-step-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 2;
}

/* ─── Service Promise Bar ─── */
.promise-bar {
  background: #fff; padding: 48px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.promise-items {
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.promise-item {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
}
.promise-item strong {
  display: block;
  font-family: var(--serif-cn);
  font-size: 14px; font-weight: 400;
  color: var(--text-main); margin-bottom: 4px;
}

/* ─── Store Image Section ─── */
.store-section {
  background: var(--black); color: #fff;
  text-align: center; overflow: hidden;
}
.store-image-wrapper { max-width: 1100px; margin: 0 auto 56px; }
.store-image-wrapper img {
  width: 100%; height: auto;
  max-height: 480px; object-fit: cover; opacity: 0.75;
}
.store-caption {
  font-family: var(--serif-cn);
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); line-height: 1.9;
}

/* ─── Footer ─── */
footer {
  background: #070707;
  color: rgba(255,255,255,0.3);
  padding: 44px 48px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: var(--serif-en);
  font-size: 16px; font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.footer-brand-cn {
  font-family: var(--serif-cn);
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--gold); opacity: 0.45; margin-top: 3px;
}
.footer-tagline {
  font-size: 10px; font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  max-width: 300px; line-height: 1.8; text-align: right;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap; gap: 20px;
}
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  text-decoration: none; font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 10px; letter-spacing: 0.04em; }
.footer-beian { margin-top: 6px; display: block; }
.footer-beian a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-beian a:hover { color: var(--gold); }

/* ─── Mobile Menu Overlay ─── */
.mobile-menu {
  display: none;
  position: fixed; top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(16px);
  z-index: 90; padding: 40px 28px;
  flex-direction: column; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif-cn);
  font-size: 18px; font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-main); text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 80px 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .adv-inner { grid-template-columns: 1fr; gap: 40px; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .craft-grid { grid-template-columns: 1fr; }
  .philosophy-values { grid-template-columns: 1fr; }
  .story-timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-content { width: calc(100% - 64px); margin-left: 40px; }
  .timeline-dot { left: 20px; }
  footer { padding: 32px 28px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-intro,
  .service-detail-intro.reverse { grid-template-columns: 1fr; direction: ltr; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .exp-global-items { flex-direction: column; gap: 14px; }
  .series-traits { flex-direction: column; gap: 20px; }
  .footer-top { flex-direction: column; }
  .footer-tagline { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-intro { flex-direction: column; align-items: flex-start; }
  .exp-top { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { left: 16px; }
  .process-step-dot { width: 36px; height: 36px; }
  .process-step-dot span { font-size: 12px; }
  nav { padding: 0 16px; }
  section { padding: 60px 16px; }
  footer { padding: 28px 16px; }
  .page-hero { min-height: 30vh; }
  .stories-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { bottom: 80px; }
  .promise-items { gap: 24px; }
}

/* ─── Brand Stats Section (Hero下方白底优势模块) ─── */
.brand-stats-section {
  background: #fff;
  padding: 56px 48px;
  border-bottom: 1px solid var(--border-light);
}
.brand-stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.brand-stat-item {
  flex: 1; text-align: center; padding: 20px 32px;
}
.brand-stat-num {
  font-family: var(--serif-cn);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.brand-stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}
.brand-stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .brand-stats-section { padding: 40px 16px; }
  .brand-stats-inner { flex-direction: column; gap: 0; }
  .brand-stat-divider { width: 60px; height: 1px; }
  .brand-stat-item { padding: 16px 0; }
}

/* ─── Service Card 配图 ─── */
.service-card-img {
  width: 100%; aspect-ratio: 3/2; overflow: hidden;
  margin-bottom: 28px;
  border-radius: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

/* ─── White Fox 系列配图 ─── */
.series-visual {
  width: 100%; max-width: 640px; margin: 0 auto 36px;
  aspect-ratio: 4/3; overflow: hidden;
}
.series-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.series-visual:hover .series-main-img { transform: scale(1.03); }

/* ─── Customer Stories 4列 + 配图 ─── */
.stories-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
.story-card-photo {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  margin-bottom: 20px;
}
.story-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story-card:hover .story-card-photo img { transform: scale(1.04); }
@media (max-width: 1024px) {
  .stories-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .stories-grid-4 { grid-template-columns: 1fr !important; }
}

/* ─── Gold/Redesign 模块浅黄背景 ─── */
.bg-gold-pale {
  background: #FDF8EE !important;
}

/* ─── 优势/定制服务 字号放大 ─── */
.promise-item-lg strong {
  font-size: 18px !important;
  display: block;
  margin-bottom: 8px;
}
.promise-item-lg {
  font-size: 14px !important;
  line-height: 1.9;
}

/* ─── 我们的承诺模块 ─── */
.our-promise-section {
  background: var(--off-white);
  padding: 80px 48px;
}
.our-promise-inner {
  max-width: 1100px; margin: 0 auto;
}
.our-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.our-promise-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
}
.our-promise-card-icon {
  font-size: 32px; color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.7;
}
.our-promise-card-title {
  font-family: var(--serif-cn);
  font-size: 17px; font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.our-promise-card-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted);
  line-height: 2;
}
@media (max-width: 1024px) {
  .our-promise-grid { grid-template-columns: 1fr; gap: 20px; }
  .our-promise-section { padding: 60px 28px; }
}
@media (max-width: 640px) {
  .our-promise-section { padding: 48px 16px; }
}
