/* ============================================
   伍浩官·3CM 主题样式 — 融合风格
   主色：浅米暖棕 (设计图方向)
   点缀：深木色+烫金 (文档方向，用于页脚/版权区)
   ============================================ */

:root {
  /* 主色调 — 浅米暖棕系 */
  --bg-cream: #FAF5EC;
  --bg-paper: #FFFDF7;
  --bg-warm: #F5E6C8;
  --bg-card: #FFFFFF;

  /* 文字色 */
  --text-primary: #3D2B1F;
  --text-body: #5C4A3A;
  --text-muted: #8A7A68;
  --text-light: #B8A88F;
  --text-inverse: #F5E6C8;
  --text-inverse-muted: #C5A028;

  /* 强调色 */
  --accent-gold: #C5A028;
  --accent-gold-dark: #A88620;
  --accent-red: #8B2323;
  --accent-green: #2C4A3E;
  --accent-wood: #3D2B1F;

  /* 边框/分隔 */
  --border-light: #E8DCC8;
  --border-warm: #D4C5A9;
  --border-gold: #C5A028;

  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* 阴影 */
  --shadow-card: 0 2px 12px rgba(61, 43, 31, 0.06);
  --shadow-hover: 0 6px 24px rgba(61, 43, 31, 0.12);

  /* 字体 */
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "STSong", serif;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", sans-serif;
  --font-en: "Playfair Display", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-red); }

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

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(61, 43, 31, 0.08); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  white-space: nowrap;
}
.brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-sep { color: var(--accent-gold); }
.brand-en { font-family: var(--font-en); font-size: 18px; color: var(--accent-gold-dark); }

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--accent-gold-dark);
  background: var(--bg-warm);
}

.header-cta {
  padding: 8px 20px;
  font-size: 14px;
  color: var(--accent-gold-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.2s;
}
.header-cta:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: 0.3s;
}

/* ============================================
   Main / Layout
   ============================================ */
.site-main { min-height: 60vh; }

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}
.section-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px;
}
.section-wide {
  max-width: 100%;
  padding: 64px 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  margin: 12px auto 40px;
  border: none;
}

/* ============================================
   Hero Section (Homepage)
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  overflow: hidden;
  padding: 80px 24px 64px;
}
/* 有背景图时叠加遮罩 */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 245, 236, 0.88) 0%,
    rgba(250, 245, 236, 0.50) 50%,
    rgba(250, 245, 236, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-quote { position: relative; z-index: 2; }
/* 主理人照片 */
.hero-portrait {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(61, 43, 31, 0.2);
  display: block;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  padding: 4px 12px;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--accent-gold-dark); }
.hero-subtitle {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  font-size: 15px;
  font-family: var(--font-sans);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent-gold);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-gold-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--accent-gold-dark);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}
.btn-dark {
  background: var(--accent-wood);
  color: var(--text-inverse);
}
.btn-dark:hover { background: #2A1D14; color: var(--text-inverse); }
.btn-red {
  background: var(--accent-red);
  color: #fff;
}
.btn-red:hover { background: #6A1A1A; color: #fff; }

.hero-visual {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(197, 160, 40, 0.04) 20px,
    rgba(197, 160, 40, 0.04) 40px
  );
}
.hero-visual-content {
  text-align: center;
  z-index: 1;
  padding: 40px;
}
.hero-visual-content .visual-icon {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--accent-gold);
  opacity: 0.3;
  margin-bottom: 16px;
}
.hero-visual-content .visual-text {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Hero quote below */
.hero-quote {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 2;
}
.hero-quote .year {
  color: var(--accent-gold-dark);
  font-weight: 500;
}

/* ============================================
   Card Grid (3 cards)
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.info-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-gold-dark);
  margin-bottom: 20px;
}
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.info-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.info-card .card-link {
  font-size: 14px;
  color: var(--accent-gold-dark);
  font-weight: 500;
}
.info-card .card-link:hover { color: var(--accent-red); }

/* ============================================
   3CM Standard 6-grid icons
   ============================================ */
.standard-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.standard-item {
  text-align: center;
  padding: 28px 12px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.standard-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-warm);
}
.standard-item .std-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent-gold-dark);
  transition: all 0.3s;
}
.standard-item:hover .std-icon {
  background: var(--accent-gold);
  color: #fff;
}
.standard-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.standard-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Product Showcase (dual cards)
   ============================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: var(--shadow-hover); }
.product-card-banner {
  height: 240px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* 有背景图时加遮罩 */
.product-card-banner[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 6, 0.35);
  z-index: 0;
}
.product-card-banner[style*="background-image"] .banner-label {
  position: relative;
  z-index: 1;
}
.product-card-banner.premium { background: linear-gradient(135deg, #3D2B1F, #5C4A3A); }
.product-card-banner.mass { background: linear-gradient(135deg, #2C4A3E, #3D5A4E); }
.product-card-banner .banner-label {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent-gold);
}
.product-card-banner.mass .banner-label { color: #A8C8B4; }
.product-card-body {
  padding: 28px;
}
.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.product-card-body .product-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-card-body .product-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.product-card-body .product-tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--bg-warm);
  color: var(--accent-gold-dark);
  margin-bottom: 16px;
}

/* ============================================
   Wisdom quotes (large text)
   ============================================ */
.wisdom-quotes {
  background: var(--accent-wood);
  padding: 80px 24px;
  text-align: center;
}
.wisdom-quotes .quote-item {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.wisdom-quotes .quote-divider {
  width: 40px;
  height: 1px;
  background: rgba(197, 160, 40, 0.3);
  margin: 0 auto 24px;
  border: none;
}

/* ============================================
   Scene entry (2 cards)
   ============================================ */
.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.scene-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
/* 有背景图时，内容区加深色渐变遮罩 */
.scene-card[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 6, 0.72) 0%, rgba(20, 12, 6, 0.1) 60%, transparent 100%);
  z-index: 0;
}
.scene-card[style*="background-image"] .scene-card-content {
  position: relative;
  z-index: 1;
}
.scene-card[style*="background-image"] h3 { color: #F5E6C8; }
.scene-card[style*="background-image"] .scene-desc { color: #C5A028; }
.scene-card[style*="background-image"] .scene-tags { color: rgba(245, 230, 200, 0.7); }
.scene-card:hover { box-shadow: var(--shadow-hover); }
.scene-card-content {
  padding: 32px;
  width: 100%;
}
.scene-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.scene-card .scene-desc {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 8px;
}
.scene-card .scene-tags {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================
   News cards (3 cards)
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.news-card-cover {
  height: 160px;
  background: var(--bg-warm);
  position: relative;
}
.news-card-body {
  padding: 20px 24px 24px;
}
.news-card-date {
  font-size: 13px;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
}
.news-card-body h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}
.news-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Page head (interior pages)
   ============================================ */
.page-hero {
  background: var(--accent-wood);
  padding: 60px 24px 48px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.page-hero .page-lead {
  font-size: 16px;
  color: rgba(245, 230, 200, 0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   Content body (single page)
   ============================================ */
.content-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px;
}
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--accent-gold);
}
.content-section h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 12px;
}
.content-section p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 14px;
}
.content-section ul, .content-section ol {
  margin: 12px 0 20px 20px;
}
.content-section li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 2;
}

/* Tables in content */
.std-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.std-table th {
  background: var(--bg-warm);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-gold);
}
.std-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.std-table tr:last-child td { border-bottom: none; }
.std-table .td-label {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  width: 100px;
}

/* Block grid in content (e.g. 3-column comparison) */
.block-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.block-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.block-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.block-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}
.block-item h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.block-item p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Callout box */
.callout {
  background: var(--bg-warm);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p {
  margin: 0;
  font-size: 15px;
  color: var(--text-primary);
}

/* Image gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.gallery-item {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.gallery-item .gallery-placeholder {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-muted);
}
.gallery-item .gallery-caption {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Process steps (horizontal) */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  min-width: 140px;
}
.process-step .step-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent-gold-dark);
  margin-bottom: 6px;
}
.process-step h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.process-step p {
  font-size: 12px;
  color: var(--text-muted);
}
.process-arrow {
  font-size: 20px;
  color: var(--accent-gold);
}

/* ============================================
   News list page
   ============================================ */
.news-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px;
}
.news-list-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.news-list-item:hover { background: rgba(245, 230, 200, 0.3); }
.news-list-item .news-date {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.news-list-item .news-date .day {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-gold-dark);
}
.news-list-item .news-date .month {
  font-size: 12px;
  color: var(--text-muted);
}
.news-list-item .news-content { flex: 1; }
.news-list-item .news-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.news-list-item .news-content h3 a { color: inherit; }
.news-list-item .news-content h3 a:hover { color: var(--accent-gold-dark); }
.news-list-item .news-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.news-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.news-tag {
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
}
.news-tag.active, .news-tag:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}

/* ============================================
   Contact page
   ============================================ */
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px;
}
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.contact-table th, .contact-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.contact-table th {
  background: var(--bg-warm);
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-primary);
  width: 160px;
}
.contact-table td { color: var(--text-body); font-size: 14px; }
.contact-table tr:last-child th, .contact-table tr:last-child td { border-bottom: none; }

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 2;
}

/* Social matrix */
.social-matrix {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.social-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  min-width: 80px;
  transition: all 0.2s;
}
.social-platform:hover {
  border-color: var(--border-gold);
  background: var(--bg-card);
}
.social-platform .platform-name {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}
.social-platform .platform-star {
  font-size: 10px;
  color: var(--accent-red);
}

/* Inquiry form */
.inquiry-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.inquiry-form label {
  display: block;
  margin-bottom: 16px;
}
.inquiry-form label span {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 500;
}
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  color: var(--text-primary);
  transition: border-color 0.2s;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  outline: none;
  border-color: var(--accent-gold);
}
.inquiry-form textarea { min-height: 100px; resize: vertical; }
.inquiry-form button {
  background: var(--accent-gold);
  color: #fff;
  padding: 12px 32px;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.inquiry-form button:hover { background: var(--accent-gold-dark); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--accent-wood);
  color: rgba(245, 230, 200, 0.6);
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.8) sepia(0.3);
}
.footer-logo-cn {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}
.footer-logo-en {
  font-family: var(--font-en);
  font-size: 14px;
  color: rgba(197, 160, 40, 0.6);
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 230, 200, 0.5);
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(245, 230, 200, 0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 230, 200, 0.5);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.social-item {
  display: block;
  font-size: 13px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid rgba(197, 160, 40, 0.2);
  border-radius: var(--radius-sm);
  color: rgba(245, 230, 200, 0.5);
  transition: all 0.2s;
}
.social-item:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(197, 160, 40, 0.15);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(245, 230, 200, 0.3);
  line-height: 1.8;
}

/* ============================================
   404 Page
   ============================================ */
.not-found {
  text-align: center;
  padding: 100px 24px;
}
.not-found h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.not-found p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
  }
  .site-nav.open { display: flex; }
  .nav-link { padding: 10px 14px; border-bottom: 1px solid var(--border-light); }
  .header-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 32px; }
  .hero-visual { height: 280px; }

  .card-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: repeat(3, 1fr); }
  .product-showcase { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .block-grid-3 { grid-template-columns: 1fr; }
  .block-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .wisdom-quotes .quote-item { font-size: 22px; }
  .page-hero h1 { font-size: 24px; }
  .section { padding: 40px 20px; }
}

@media (max-width: 600px) {
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .block-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
}
