/* ═══════════════════════════════════════════════════
   媄吾体 品牌官网 · 主样式表
   Design: 暖玫瑰金 #C8A882 + 珊瑚红 #B85C4A + 静谧绿 #7A8B7A
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:        #FAF8F5;
  --bg-alt:    #F2EDE6;
  --bg-card:   #FFFFFF;
  --primary:   #C8A882;
  --primary-d: #A88B68;
  --accent:    #B85C4A;
  --sage:      #7A8B7A;
  --dark:      #2D2622;
  --text:      #4A4440;
  --muted:     #8A8078;
  --border:    #E8E0D8;
  --white:     #FFFFFF;
  --radius:    4px;
  --shadow:    0 4px 24px rgba(45,38,34,0.08);
  --shadow-lg: 0 12px 48px rgba(45,38,34,0.14);
  --transition: 0.3s ease;
  --container: 1200px;
  --font-display: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --font-body:    'Noto Sans SC', sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.3;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p  { font-size: 1rem; color: var(--text); }

/* ── Section Title ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-header {
  margin-bottom: 64px;
}
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: #a04a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,92,74,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 0;
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.btn-ghost:hover { color: var(--accent); }

/* ── Link Arrow ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  position: relative;
}
.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ── Header / Nav ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(45,38,34,0.06);
}
.header-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--accent); }

.header-cta {
  font-size: 0.85rem;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  letter-spacing: 1px;
}
.header-cta:hover { background: #a04a3a !important; transform: translateY(-1px); }
.header-cta::after { display: none !important; }

/* ── Hero Carousel ── */
.hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Desktop: hide img tag */
.hero-slide-img {
  display: none;
}

/* Mobile: rebuild layout */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
    display: block;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    height: auto;
  }
  .hero-slide.active {
    display: flex;
    position: relative;
  }
  .hero-slide-bg {
    display: none;
  }
  .hero-slide-img {
    display: block;
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }
  .hero-content {
    position: relative;
    padding: 24px;
    background: var(--dark);
    flex: 1;
    text-align: center;
  }
  .hero-content .hero-eyebrow,
  .hero-content h1,
  .hero-content .hero-tagline {
    display: none; /* Hide text on mobile, image already has text */
  }
  .hero-actions {
    justify-content: center;
    margin-top: 0;
  }
  .hero-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    padding: 16px 0;
    background: var(--dark);
    justify-content: center;
  }
  .hero-arrows {
    display: none;
  }
  .hero-scroll {
    display: none !important;
  }
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,38,34,0.85) 0%, rgba(45,38,34,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--primary);
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Carousel Controls */
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--primary); }
.hero-dot:hover { background: rgba(255,255,255,0.6); }

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--primary);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Philosophy Strip ── */
.philosophy {
  background: var(--dark);
  padding: 80px 0;
  overflow: hidden;
}
.philosophy-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.philosophy-char {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
  position: relative;
}
.philosophy-char:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 3rem;
  opacity: 0.4;
}
.philosophy-char h3 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.philosophy-char h3 span { color: var(--primary); }
.philosophy-char p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.philosophy-meaning {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  text-align: center;
  line-height: 1.9;
  padding: 0 60px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.philosophy-meaning strong { color: var(--primary); font-weight: 500; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--dark); color: var(--white); }
.section.dark .section-title { color: var(--white); }
.section.dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ── Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  height: 280px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 28px; }
.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-price {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.product-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.feature-item h3 { margin-bottom: 12px; }
.feature-item p { font-size: 0.9rem; color: var(--muted); }

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.team-card-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.team-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--primary);
}
.team-card p { font-size: 0.9rem; color: var(--text); line-height: 1.8; }

/* Team Member Grid */
.team-member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-member-card {
  text-align: center;
}
.team-member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  overflow: hidden;
}
.team-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-member-card .role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.team-member-card .desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── News Cards ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img {
  height: 200px;
  background: var(--bg-alt);
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 28px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.news-tag {
  background: var(--bg-alt);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.news-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.news-title:hover { color: var(--accent); }
.news-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .header-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 300px; }
.footer-qr {
  margin-top: 20px;
  text-align: center;
}
.footer-qr-box {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-qr-box i {
  font-size: 3rem;
  color: var(--muted);
}
.footer-qr p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--primary); }

/* ── Brand Story ── */
.brand-hero {
  padding: 140px 0 80px;
  background: var(--dark);
  text-align: center;
}
.brand-hero h1 { color: var(--white); margin-bottom: 20px; }
.brand-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 40px; }
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-text .section-eyebrow { margin-bottom: 8px; }
.story-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.story-text p { color: var(--text); line-height: 2; margin-bottom: 16px; }
.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.philosophy-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.philosophy-card h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.philosophy-card p { font-size: 0.9rem; color: var(--muted); }
.philosophy-img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
}
.philosophy-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--muted); }

/* Contact QR Section */
.contact-qr-section {
  background: var(--bg-alt);
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
}
.contact-qr-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-qr-box {
  width: 200px;
  height: 200px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
}
.contact-qr-box i {
  font-size: 4rem;
  color: var(--muted);
}
.contact-qr-section p {
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-qr-section .qr-tip {
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 8px;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.badge-accent { background: rgba(184,92,74,0.1); color: var(--accent); }
.badge-sage { background: rgba(122,139,122,0.15); color: var(--sage); }
.badge-primary { background: rgba(200,168,130,0.15); color: var(--primary-d); }

/* ── Page Header ── */
.page-header {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header { padding: 0 24px; }
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .philosophy-inner { flex-direction: column; gap: 40px; }
  .philosophy-char:not(:last-child)::after { display: none; }
  .philosophy-meaning { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 40px 0 0; }
  .hero-dots { bottom: 80px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-arrows { display: none; }
}


/* ── 视频弹窗 ── */
.video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-wrapper:hover .video-overlay {
  opacity: 1;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,38,34,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}
.video-play-btn {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.open {
  display: flex;
}
.video-modal video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}
.video-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 8px;
  opacity: 0.8;
}
.video-modal .close-btn:hover { opacity: 1; }
