/* ============================
   三聯月曆印刷 — Global Styles
   ============================ */

:root {
  --red:       #C8102E;
  --ivory:     #F8F5F0;
  --ink:       #1A1A1A;
  --gold:      #D4AF37;
  --gold-light:#F0DC82;
  --white:     #FFFFFF;
  --gray-light:#F2EEEA;
  --gray-mid:  #888888;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.28s ease;
  --font-zh:   'Noto Serif TC', 'PingFang TC', 'Microsoft JhengHei', serif;
  --font-en:   'Cormorant Garamond', Georgia, serif;
  --font-ui:   'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
}

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

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

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-zh);
  line-height: 1.3;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1.05rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-mid);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: #a50d25;
  border-color: #a50d25;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8962e;
  border-color: #b8962e;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-wechat {
  background: #07C160;
  color: var(--white);
  border-color: #07C160;
}
.btn-wechat:hover {
  background: #059e4d;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,26,0.98);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  font-family: var(--font-zh);
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-zh {
  font-family: var(--font-zh);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo-en {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-ui);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-cta .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(26,26,26,0.98);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn {
  margin-top: 0.75rem;
  justify-content: center;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200,16,46,0.75) 0%, rgba(26,26,26,0.85) 55%, rgba(26,26,26,0.92) 100%),
    url('https://images.unsplash.com/photo-1609743522653-52354461eb27?w=1600&q=80') center/cover no-repeat;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200,16,46,0.08) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
  padding: 4rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero-title {
  font-family: var(--font-zh);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.hero-stat-number {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Section Spacing ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-light); }
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.4);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #fef3f5, #fff8e7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ---- Parallax Video ---- */
.video-section {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.77vh;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.6), rgba(200,16,46,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}
.video-overlay h2 {
  font-family: var(--font-zh);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.video-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-zh);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

/* ---- Products ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-thumb {
  height: 200px;
  background: linear-gradient(135deg, #fef3f5, #fff8e7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.04));
}
.product-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 1;
}
.product-body {
  padding: 1.5rem;
}
.product-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-body p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.feature-tag {
  background: var(--gray-light);
  color: var(--ink);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.07);
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #fef3f5 0%, #fff8e7 100%);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}
.about-badge-float .num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge-float .label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}
.about-content { }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p {
  color: #555;
  margin-bottom: 1.1rem;
}
.about-points {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-point-icon {
  width: 28px;
  height: 28px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.about-point p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, #fef3f5, #fff8e7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body {
  padding: 1.4rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-cat {
  background: rgba(200,16,46,0.08);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.blog-date {
  font-size: 0.78rem;
  color: var(--gray-mid);
}
.blog-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-body p {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 0.6rem; }

/* ---- Contact Form ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  color: #555;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--red);
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 0.1rem;
}
.contact-item-text a:hover { color: var(--red); }
.contact-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.15);
}
.contact-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-group label .req { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
textarea.form-control {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.75rem;
}

/* ---- FAQ (Schema ready) ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: var(--font-ui);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-chevron {
  font-size: 1.1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--gold);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* ---- Footer ---- */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: var(--font-zh);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  align-items: flex-start;
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1a1a 100%);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,16,46,0.18) 0%, transparent 70%);
}
.page-hero h1 {
  color: var(--white);
  position: relative;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-red     { color: var(--red); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 2rem 0;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { order: -1; }
  .about-image-wrap { height: 300px; }
  .about-badge-float { bottom: -16px; right: 16px; }
  .contact-wrap  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .video-section { height: 280px; }
  .form-row  { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
}
