/* ========================================
   JINMEN CULTURE V3 — Complete Stylesheet
   Based on reference images 1, 2, 3
   ======================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Noto+Serif+SC:wght@300;400;500&family=Inter:wght@300;400;500&family=Noto+Sans+SC:wght@300;400&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Backgrounds */
  --bg-primary: #090909;
  --bg-alt: #0F0F0A;
  --bg-card: #141410;
  --bg-footer: #111110;
  --bg-nav: rgba(9,9,9,0.92);

  /* Gold System */
  --gold: #C9A060;
  --gold-text: #D4AA6A;
  --gold-muted: rgba(201,160,96,0.6);
  --gold-faint: rgba(201,160,96,0.13);
  --gold-gradient: linear-gradient(135deg, #C9A060, #E8C080);
  --gold-gradient-hover: linear-gradient(135deg, #DDB870, #EEC880);

  /* Text */
  --text-primary: #EDE8DF;
  --text-secondary: #8A8070;
  --text-tertiary: #4A4438;

  /* Borders */
  --border-card: 1px solid rgba(201,160,96,0.2);
  --border-card-hover: 1px solid rgba(201,160,96,0.5);
  --border-divider: 0.5px solid #1E1C16;

  /* Typography */
  --font-en: 'Inter', sans-serif;
  --font-en-display: 'Playfair Display', serif;
  --font-cn: 'Noto Sans SC', sans-serif;
  --font-cn-serif: 'Noto Serif SC', serif;
}

.device-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* ensure text sits on top of the image */
  overflow: hidden;
  border-radius: 12px; /* keep your existing rounding */
}

/* semi‑transparent overlay – keeps text readable */
.card-overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay, adjust opacity as needed */
  padding: 16px;
  border-radius: inherit;
  height: 100%;
  transition: background 0.3s;
}

/* optional: lighten overlay on hover */
.device-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-cn), var(--font-en);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 14px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Language toggle — default Chinese */
.lang-en { display: none !important; }
body.show-en .lang-cn { display: none !important; }
body.show-en .lang-en { display: block !important; }
body.show-en .lang-en-inline { display: inline !important; }
body.show-en .lang-cn-inline { display: none !important; }

/* ---- Typography Classes ---- */
.font-display { font-family: var(--font-en-display); }
.font-cn-serif { font-family: var(--font-cn-serif); }
.font-cn { font-family: var(--font-cn); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(30,28,22,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.site-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-nav .logo img {
  width: 32px; height: 32px;
}
.site-nav .logo-text {
  display: flex;
  flex-direction: column;
}
.site-nav .logo-text .cn {
  font-family: var(--font-cn-serif);
  font-size: 15px;
  color: var(--gold-text);
  line-height: 1.2;
}
.site-nav .logo-text .en {
  font-family: var(--font-en);
  font-size: 7.5px;
  color: #6A6050;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.site-nav .nav-links a {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--gold-text);
}

.site-nav .lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 11px;
}
.site-nav .lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  color: var(--text-tertiary);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.site-nav .lang-toggle button.active {
  color: var(--gold-text);
  border-bottom: 1px solid var(--gold-text);
}
.site-nav .lang-toggle button:hover:not(.active) {
  color: var(--text-secondary);
}

/* Mobile nav */
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
}
.mobile-menu { display: none; }
@media (max-width: 900px) {
  .site-nav { padding: 0 16px; }
  .site-nav .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .mobile-menu {
    position: fixed; inset: 0;
    background: rgba(9,9,9,0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-cn-serif);
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
  }
  .mobile-menu a:hover { color: var(--gold-text); }
  .mobile-menu .close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: var(--gold); font-size: 28px; cursor: pointer;
  }
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
body.scrolled-past-hero .hero-bg {
  position: absolute;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0.3) 0%, rgba(9,9,9,0.5) 40%, rgba(9,9,9,0.85) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
}

/* Hero left content */
.hero-left {
  max-width: 520px;
  padding-top: 40px;
}
.hero-left h1 {
  font-family: var(--font-en-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-left h1 .gold {
  color: var(--gold-text);
  font-style: italic;
  font-size: 54px;
}
.hero-left .hero-cn-title {
  font-family: var(--font-cn-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-text);
  margin-top: 12px;
  margin-bottom: 16px;
}
.hero-left .gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.hero-left .hero-body {
  font-family: var(--font-cn), var(--font-en);
  font-size: 13px;
  color: #6A6050;
  line-height: 1.8;
  max-width: 380px;
}
.hero-left .hero-body .en {
  font-family: var(--font-en);
  font-size: 13px;
  margin-bottom: 8px;
}

/* Hero right nav */
.hero-right-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-nav-item {
  text-align: right;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.hero-nav-item:hover,
.hero-nav-item.active {
  opacity: 1;
}
.hero-nav-item .num {
  font-family: var(--font-en-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-text);
  display: block;
  line-height: 1;
}
.hero-nav-item .name-en {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-top: 4px;
}
.hero-nav-item .name-cn {
  font-family: var(--font-cn);
  font-size: 10px;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.scroll-indicator .line {
  width: 1px;
  height: 32px;
  background: var(--gold);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Section Headings ---- */
.section-heading {
  text-align: center;
  padding: 80px 0 48px;
}
.section-heading h2 {
  font-family: var(--font-cn-serif);
  font-size: 36px;
  color: var(--gold-text);
  font-weight: 400;
  margin: 0;
}
.section-heading h2.en {
  font-family: var(--font-en-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-top: 8px;
}
.section-heading .subtitle {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Credential Cards ---- */
.credential-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.2);
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.credential-card:hover {
  border-color: rgba(201,160,96,0.5);
}
.credential-card .icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.credential-card h3 {
  font-family: var(--font-cn-serif);
  font-size: 16px;
  color: var(--gold-text);
  margin-bottom: 8px;
  font-weight: 400;
}
.credential-card h3.en {
  font-family: var(--font-en-display);
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.credential-card p {
  font-size: 12px;
  color: #6A6050;
  line-height: 1.6;
}

/* ---- Case Cards ---- */
.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.case-card:hover {
  transform: scale(1.02);
}
.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.80) saturate(0.55) contrast(1.05);
  transition: filter 0.5s ease;
}
.case-card:hover img {
  filter: brightness(0.95) saturate(0.70) contrast(1.05);
}
.case-card .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, transparent 100%);
}
.case-card .overlay h4 {
  font-family: var(--font-cn-serif);
  font-size: 14px;
  color: var(--gold-text);
  font-weight: 400;
}
.case-card .overlay p {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ---- Project Cards (微醺秀 & Ghost) ---- */
.project-card {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(201,160,96,0.2);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-card:hover {
  border-color: rgba(201,160,96,0.5);
  transform: translateY(-4px);
}
.project-card .card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.project-card .card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.55);
}
.project-card .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(9,9,9,0.95) 100%);
  z-index: 1;
}
.project-card .card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.project-card .tag {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-card h3 {
  font-family: var(--font-cn-serif);
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 4px;
}
.project-card h3.en {
  font-family: var(--font-en-display);
  font-size: 18px;
  color: var(--text-primary);
  font-style: italic;
}
.project-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 8px 0;
}
.project-card .price {
  font-family: var(--font-en-display);
  font-size: 18px;
  color: var(--gold-text);
  margin: 8px 0;
}
.project-card .card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* ---- Business Direction Cards ---- */
.direction-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.15);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.direction-card:hover {
  border-color: rgba(201,160,96,0.4);
  transform: translateY(-4px);
}
.direction-card .icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}
.direction-card h3 {
  font-family: var(--font-cn-serif);
  font-size: 18px;
  color: var(--gold-text);
  font-weight: 400;
  margin-bottom: 4px;
}
.direction-card h3.en {
  font-family: var(--font-en-display);
  font-size: 14px;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 12px;
}
.direction-card p {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}
.btn-outlined {
  border: 1px solid rgba(201,160,96,0.4);
  color: var(--text-primary);
  background: transparent;
}
.btn-outlined:hover {
  border-color: var(--gold);
  color: var(--gold-text);
}
.btn-filled {
  background: var(--gold-gradient);
  color: #090909;
  font-weight: 500;
}
.btn-filled:hover {
  background: var(--gold-gradient-hover);
}
.btn-lg {
  padding: 18px 48px;
  font-size: 14px;
}

/* Three button CTA row */
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section .cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.5);
}
.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0.7);
  z-index: 1;
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-family: var(--font-cn-serif);
  font-size: 42px;
  color: var(--gold-text);
  font-weight: 400;
  margin-bottom: 8px;
}
.cta-section h2.en {
  font-family: var(--font-en-display);
  font-size: 30px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-section .subtext {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-footer);
  border-top: 0.5px solid #1E1C16;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-cn-serif);
  font-size: 14px;
  color: var(--gold-text);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col .tagline {
  font-family: var(--font-cn-serif);
  font-size: 16px;
  color: var(--text-primary);
  margin-top: 8px;
}
.footer-col a {
  display: block;
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold-text);
}
.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
}
.footer-col .contact-item:hover {
  color: var(--gold-text);
}
.footer-col .contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.footer-col img.qr {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  margin-top: 8px;
}
.footer-bottom {
  border-top: 0.5px solid #1E1C16;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ---- Page Hero (non-home) ---- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.55);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0.6);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}
.page-hero .label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-cn-serif);
  font-size: 42px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 8px;
}
.page-hero h1.en {
  font-family: var(--font-en-display);
  font-size: 32px;
  color: var(--gold-text);
  font-style: italic;
}

/* ---- Sections ---- */
.section {
  padding: 0 0 80px;
}
.section-alt {
  background: var(--bg-alt);
}

/* ---- Fade-up animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Photo treatment ---- */
.site-photo {
  filter: brightness(0.80) saturate(0.55) contrast(1.05);
  transition: filter 0.5s ease;
}
.site-photo:hover {
  filter: brightness(0.95) saturate(0.70) contrast(1.05);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox .lb-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--text-secondary);
  font-size: 32px;
  cursor: pointer;
}
.lightbox .lb-close:hover { color: var(--gold); }
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  padding: 12px 8px;
  cursor: pointer;
}
.lightbox .lb-prev { left: 10px; }
.lightbox .lb-next { right: 10px; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  cursor: pointer;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.15);
  color: var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-cn), var(--font-en);
  font-size: 13px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---- Device/Product Cards ---- */
.device-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.12);
  padding: 20px;
  transition: border-color 0.3s;
}
.device-card:hover {
  border-color: rgba(201,160,96,0.35);
}
.device-card .name {
  font-family: var(--font-cn-serif);
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.device-card .name-en {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.device-card .desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}
.device-card .price {
  font-family: var(--font-en-display);
  font-size: 16px;
  color: var(--gold-text);
}

/* ---- Pricing Tiers ---- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.15);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(201,160,96,0.4);
}
.pricing-card .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #090909;
  padding: 4px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 12px;
}
.pricing-card h4 {
  font-family: var(--font-cn-serif);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 4px;
}
.pricing-card .price {
  font-family: var(--font-en-display);
  font-size: 28px;
  color: var(--gold-text);
  margin: 16px 0;
}
.pricing-card .price span {
  font-size: 14px;
  color: var(--text-tertiary);
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}
.pricing-card ul li {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 0.5px solid #1E1C1633;
}
.pricing-card ul li::before {
  content: "✓ ";
  color: var(--gold);
}

/* ---- Team Card ---- */
.team-card {
  display: flex;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.15);
  padding: 32px;
}
.team-card img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.6);
}
.team-card .info h3 {
  font-family: var(--font-cn-serif);
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 400;
}
.team-card .info .role {
  color: var(--gold-text);
  font-size: 13px;
  margin: 4px 0 16px;
}
.team-card .info ul {
  list-style: none;
}
.team-card .info ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
}
.team-card .info ul li::before {
  content: "✦ ";
  color: var(--gold);
}

/* ---- Occasion Grid ---- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.occasion-item {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.1);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.occasion-item:hover {
  border-color: rgba(201,160,96,0.3);
  transform: translateY(-2px);
}
.occasion-item .icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.occasion-item h4 {
  font-family: var(--font-cn-serif);
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 2px;
}
.occasion-item h4.en {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
}

/* ---- Feedback images ---- */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feedback-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}
.feedback-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.feedback-item:hover img {
  transform: scale(1.03);
}

/* ---- Bilibili video container ---- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,160,96,0.15);
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- Financial model table ---- */
.fin-table {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.3);
  border-left: 3px solid var(--gold);
}
.fin-table .fin-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 0.5px solid #1E1C1633;
}
.fin-table .fin-row:last-child {
  border-bottom: none;
}
.fin-table .fin-row.highlight {
  background: rgba(201,160,96,0.08);
}
.fin-table .fin-row .label {
  font-size: 13px;
  color: var(--text-secondary);
}
.fin-table .fin-row .label .en {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--text-tertiary);
}
.fin-table .fin-row .value {
  font-family: var(--font-en-display);
  font-size: 16px;
  color: var(--text-primary);
}
.fin-table .fin-row.highlight .value {
  color: var(--gold-text);
  font-size: 20px;
}

/* ---- Certification Banner ---- */
.cert-banner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(201,160,96,0.08);
  border: 1px solid rgba(201,160,96,0.4);
  padding: 12px 28px;
  font-size: 12px;
  color: var(--text-secondary);
}
.cert-banner span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- Value blocks ---- */
.value-block {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.15);
  padding: 32px;
  text-align: center;
}
.value-block .icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-block h4 {
  font-family: var(--font-cn-serif);
  font-size: 18px;
  color: var(--gold-text);
  margin-bottom: 12px;
  font-weight: 400;
}
.value-block p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- Dark callout card ---- */
.callout-card {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
}
.callout-card .icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}
.callout-card h4 {
  font-family: var(--font-cn-serif);
  font-size: 18px;
  color: var(--gold-text);
  margin-bottom: 8px;
  font-weight: 400;
}
.callout-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- Toast notification ---- */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold-text);
  padding: 12px 24px;
  font-size: 13px;
  z-index: 10000;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; }

/* ---- Floating contact button ---- */
.float-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--gold-gradient);
  color: #090909;
  padding: 11px 22px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 1px;
  text-decoration: none;
  z-index: 999;
  border-radius: 30px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.float-contact:hover { opacity: 0.88; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; padding: 100px 20px 40px; }
  .hero-left h1 { font-size: 36px; }
  .hero-left h1 .gold { font-size: 38px; }
  .hero-left .hero-cn-title { font-size: 28px; }
  .hero-right-nav { display: none; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .team-card { flex-direction: column; }
  .team-card img { width: 100%; height: 300px; }
  .cta-section h2 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  .feedback-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { padding: 0 16px; }
}

/* Scroll to top */
html { scroll-behavior: smooth; }
