* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #2C2C2C;
  line-height: 1.5;
  scroll-behavior: smooth;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F0F0F0; }
::-webkit-scrollbar-thumb { background: #C5A028; border-radius: 4px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-cn {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2C2C2C;
}

.logo-en {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #C5A028;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #3a3a3a;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: #C5A028; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C5A028;
  transition: width 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hero {
  position: relative;
  background:
    linear-gradient(107deg, rgba(20, 20, 20, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%),
    url('https://images.unsplash.com/photo-1511895426328-dc8714191300?w=1600&q=80') center / cover no-repeat;
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay { width: 100%; }

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-brand small {
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: block;
  font-weight: 400;
}

.hero-tagline {
  font-size: 1.6rem;
  margin: 1.2rem 0 1rem;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  max-width: 620px;
  margin: 1.2rem auto 2rem;
  opacity: 0.92;
}

.btn-gold {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #C5A028;
  color: white;
  padding: 12px 34px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.btn-gold:hover {
  background: #C5A028;
  color: #1e1e1e;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -10px rgba(197, 160, 40, 0.4);
}

section { padding: 90px 0; }

.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-sub {
  text-align: center;
  font-size: 1rem;
  color: #7a6e5a;
  max-width: 700px;
  margin: 0 auto 50px;
}

.goods-state {
  text-align: center;
  color: #7a6e5a;
  margin-bottom: 24px;
}

.collection-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.collection-card,
.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.collection-card:hover,
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 40px -18px rgba(0, 0, 0, 0.2);
}

.card-img {
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #f3f0ea 0%, #e8e2d6 100%);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.card-content {
  padding: 28px 20px 30px;
  text-align: center;
}

.card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.card-content p {
  font-size: 0.9rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.storyteller {
  background: #F9F7F3;
  text-align: center;
}

.storyteller-inner { max-width: 950px; margin: 0 auto; }

.role-badge {
  display: inline-block;
  background: rgba(197, 160, 40, 0.12);
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #C5A028;
  margin-bottom: 28px;
}

.storyteller h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.slogan-group {
  font-size: 1.2rem;
  color: #4f4a3c;
  margin: 30px 0 20px;
  border-left: 3px solid #C5A028;
  border-right: 3px solid #C5A028;
  display: inline-block;
  padding: 0 22px;
}

.slogan-group p { margin: 8px 0; }

.story-desc {
  font-size: 1.05rem;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 32px 0 24px;
}

.gold-divider {
  width: 70px;
  height: 2px;
  background: #C5A028;
  margin: 24px auto;
}

.story-foot {
  font-size: 0.9rem;
  color: #C5A028;
  margin-top: 16px;
}

.photo-philosophy { background: #fff; padding: 60px 0; }

.philosophy-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}

.philosophy-text { flex: 1; }

.philosophy-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.philosophy-text p {
  font-size: 1rem;
  color: #5c5c5c;
  line-height: 1.7;
  margin-bottom: 16px;
}

.philosophy-quote {
  font-size: 1.2rem;
  border-left: 4px solid #C5A028;
  padding-left: 22px;
  margin: 28px 0;
  font-style: italic;
}

.philosophy-img {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.philosophy-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.philosophy-img:hover img { transform: scale(1.02); }

.contact-area {
  background: #fff;
  border-top: 1px solid #f0ede8;
  border-bottom: 1px solid #f0ede8;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 0;
}

.contact-copy {
  flex: 1;
  max-width: 420px;
}

.contact-copy h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.contact-lead {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #3a3a3a;
}

.contact-location i {
  width: 20px;
  color: #C5A028;
}

.contact-wechat {
  flex-shrink: 0;
  text-align: center;
  background: #FCFAF7;
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.08);
}

.wechat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.wechat-qr {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #eee8df;
  background: #fff;
}

.wechat-id-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.wechat-id-label {
  font-size: 0.8rem;
  color: #888;
}

.wechat-id {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.02em;
}

.wechat-copy-btn {
  border: 1px solid #C5A028;
  background: transparent;
  color: #C5A028;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.wechat-copy-btn:hover,
.wechat-copy-btn.copied {
  background: #C5A028;
  color: #1e1e1e;
}

.wechat-tip {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
}

footer {
  background: #1D1D1D;
  color: #CCCCCC;
  padding: 48px 0 32px;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; }
.footer-logo .cn { color: #fff; font-weight: 500; }
.footer-logo .en { color: #C5A028; font-size: 0.9rem; }
.footer-copy { text-align: right; }

.footer-copy .police-info {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #999;
}

.footer-copy .police-info img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .collection-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-container { flex-direction: column; gap: 0.8rem; }
  .nav-links { gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
  .logo a { align-items: center; }
  .collection-grid,
  .services-grid { grid-template-columns: 1fr; }
  .hero-brand { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.2rem; }
  section { padding: 60px 0; }
  .section-title { font-size: 2.5rem; }
  .storyteller h3 { font-size: 2rem; }
  .philosophy-grid { flex-direction: column; }
  .slogan-group { font-size: 1rem; padding: 0 12px; }
  .contact-panel {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .contact-location { justify-content: center; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-copy .police-info { justify-content: center; }
}
