/* =============================================
   綵帶坊 Custom Ribbon Printing — style.css
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300&family=Syne:wght@400;700;800&family=Noto+Serif+TC:wght@300;400;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --grape-dark:    #12002e;
  --grape-mid:     #2d1065;
  --grape:         #4c1d95;
  --violet:        #6d28d9;
  --orchid:        #8b5cf6;
  --lavender:      #a78bfa;
  --lilac:         #c4b5fd;
  --glass-bg:      rgba(255,255,255,0.09);
  --glass-bg-med:  rgba(255,255,255,0.13);
  --glass-border:  rgba(255,255,255,0.22);
  --text-body:     rgba(237,233,254,0.92);
  --text-muted:    rgba(196,181,253,0.65);
  --white:         #ffffff;
  --radius-sm:     16px;
  --radius-md:     24px;
  --radius-lg:     36px;
  --shadow-md:     0 12px 40px rgba(76,29,149,0.30);
  --section-pad-v: 120px;
  --card-pad-v:    44px;
  --card-pad-h:    36px;
}

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

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(145deg,
    #12002e 0%, #2d1065 28%, #4c1d95 58%, #6d28d9 100%);
  background-attachment: fixed;
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  color: var(--text-body);
  min-height: 100vh;
  line-height: 1.8;
}

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

/* --- Glass Utilities --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md),
              inset 0 1px 0 rgba(255,255,255,0.18);
}

.glass-light {
  background: var(--glass-bg-med);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 15px 36px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(109,40,217,0.50);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(109,40,217,0.65);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--lilac);
  border: 1.5px solid rgba(196,181,253,0.38);
  border-radius: 100px;
  padding: 14px 34px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--lilac);
  background: rgba(196,181,253,0.08);
  transform: translateY(-2px);
}

/* --- Section Label --- */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lavender);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(167,139,250,0.45), transparent);
}

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

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18,0,46,0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 0 56px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-logo .logo-cn {
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--lavender);
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lilac);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--lavender);
  border-radius: 2px;
}

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lilac);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: rgba(18,0,46,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--text-body);
  transition: color 0.2s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { color: var(--lilac); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: rgba(18,0,46,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 80px 40px 40px;
  margin-top: 120px;
}

.footer-top {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-cn {
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--lavender);
  letter-spacing: 0.22em;
  margin-top: 4px;
}
.footer-brand-url {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-top: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--lilac); }
.footer-col ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37,211,102,0.60);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.hero-content { max-width: 720px; position: relative; z-index: 1; }

.hero-scissors {
  font-size: 48px;
  display: inline-block;
  animation: scissors-swing 2.5s ease-in-out infinite;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 16px rgba(167,139,250,0.6));
}
@keyframes scissors-swing {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-en {
  font-family: 'Syne', sans-serif;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.9;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Decorative orbs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,40,217,0.25), transparent);
  top: -100px; left: -100px;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.20), transparent);
  bottom: -80px; right: -80px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  padding: 0 40px 100px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 36px 24px;
}
.trust-item .trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--orchid);
  line-height: 1;
  margin-bottom: 10px;
}
.trust-item .trust-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   GENERIC SECTION
   ============================================= */
.section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.85;
}

/* =============================================
   SERVICE PREVIEW CARDS (HOME)
   ============================================= */
.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  padding: 44px 36px;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card .card-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lavender);
  transition: gap 0.2s, color 0.2s;
}
.card-link:hover { gap: 10px; color: var(--lilac); }

/* =============================================
   OCCASION CARDS
   ============================================= */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.occasion-card {
  text-align: center;
  padding: 40px 24px;
  transition: transform 0.3s;
}
.occasion-card:hover { transform: translateY(-4px); }
.occasion-card .oc-icon { font-size: 40px; margin-bottom: 14px; }
.occasion-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.occasion-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   ORDER PROCESS
   ============================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orchid), var(--orchid), var(--orchid), transparent);
  opacity: 0.35;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orchid), var(--grape));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139,92,246,0.40);
}
.process-step h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  overflow: hidden;
  position: relative;
}
.gallery-placeholder:hover {
  background: var(--glass-bg-med);
  transform: scale(1.02);
}
.gallery-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
}
.gallery-placeholder .ph-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  z-index: 1;
}
.gallery-placeholder .ph-icon { font-size: 28px; z-index: 1; }

/* Gallery filter tabs */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(196,181,253,0.25);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--lavender); color: var(--lavender); }
.filter-tab.active {
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
  border-color: transparent;
  color: var(--white);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-chevron {
  font-size: 18px;
  color: var(--lavender);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 32px 26px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  padding: 48px 36px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  background: rgba(109,40,217,0.25);
  border-color: rgba(167,139,250,0.40);
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-qty {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.pricing-unit {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
}
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 20px;
  opacity: 0.7;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 120px 40px;
  text-align: center;
}
.cta-panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 64px;
}
.cta-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-panel p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   MAP SECTION
   ============================================= */
.map-section { padding: 0 40px 80px; }
.map-wrap { max-width: 1200px; margin: 0 auto; }
.map-inner { border-radius: var(--radius-lg); overflow: hidden; }

/* =============================================
   CONTACT CARD
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.contact-info { padding: 40px; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-row .icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-row div {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-row div strong {
  display: block;
  color: var(--lilac);
  font-size: 12px;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  padding: 140px 40px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero .sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   PRODUCT TABS
   ============================================= */
.product-tabs { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.product-tab {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(196,181,253,0.25);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.product-tab:hover { border-color: var(--lavender); color: var(--lavender); }
.product-tab.active {
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
  border-color: transparent;
  color: var(--white);
}

.product-panel { display: none; }
.product-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product-card { padding: 28px; transition: transform 0.2s; }
.product-card:hover { transform: translateY(-4px); }
.product-card-img {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-muted);
  overflow: hidden;
}
.product-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.product-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.spec-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(139,92,246,0.20);
  color: var(--lavender);
  margin: 2px;
}

/* =============================================
   SPEC TABLE
   ============================================= */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec-table th {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.spec-table td {
  padding: 16px 24px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--text-muted); font-weight: 600; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18,0,46,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.lightbox-img {
  max-height: 65vh;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  width: 100%;
  object-fit: contain;
}
.lightbox-caption {
  font-size: 14px;
  color: var(--text-muted);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--lilac);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lilac);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--glass-bg-med); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--orchid);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  padding: 28px 22px;
  transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-card h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.value-card p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { padding: 44px 36px; }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: 0.08em;
}

/* =============================================
   SERVICE PAGE
   ============================================= */
.service-main-card {
  padding: 48px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-cards-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.service-mini-card {
  padding: 32px 28px;
  transition: transform 0.2s;
}
.service-mini-card:hover { transform: translateY(-4px); }
.service-mini-card .card-icon { font-size: 32px; margin-bottom: 14px; }
.service-mini-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-mini-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.pending-note {
  font-size: 11px;
  font-style: italic;
  color: rgba(196,181,253,0.40);
  margin-top: 6px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.2s;
}
.package-card:hover { transform: translateY(-4px); }
.package-card.featured {
  background: rgba(109,40,217,0.22);
  border-color: rgba(167,139,250,0.38);
}
.package-icon { font-size: 36px; margin-bottom: 16px; }
.package-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.package-items {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 24px;
}
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--orchid);
  margin-bottom: 20px;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card { overflow: hidden; transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--text-muted);
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.blog-card-body { padding: 36px; }
.tag-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(139,92,246,0.25);
  color: var(--lavender);
  margin-bottom: 12px;
}
.blog-card h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-meta {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: rgba(196,181,253,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.blog-card[style*="none"] { display: none; }

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.breadcrumb {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lavender); }
.breadcrumb span { color: rgba(196,181,253,0.35); }

.article-header { margin-bottom: 40px; }
.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  margin-top: 16px;
}
.article-meta {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.article-cover {
  aspect-ratio: 16/9;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}

.article-body {
  line-height: 2.0;
  font-size: 17px;
  color: var(--text-body);
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 16px;
}
.article-body h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--lilac);
  margin: 32px 0 12px;
}
.article-body p { margin-bottom: 1.4em; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 1.4em;
}
.article-body li { margin-bottom: 0.5em; }
.article-body blockquote {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--orchid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-muted);
}

.in-article-cta {
  margin: 48px 0;
  padding: 36px;
  text-align: center;
}
.in-article-cta h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.in-article-cta p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.related-card { padding: 20px; transition: transform 0.2s; }
.related-card:hover { transform: translateY(-3px); }
.related-card h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 6px;
}
.related-card p { font-size: 11px; color: var(--text-muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 80px 20px; min-height: 80vh; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .service-preview-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-main-card { grid-template-columns: 1fr; }
  .service-cards-small { grid-template-columns: 1fr; }
  .product-panel.active { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
  .map-section { padding: 0 20px 80px; }
  .contact-grid { padding: 0 20px 80px; }
  .cta-section { padding: 80px 20px; }
  .cta-panel { padding: 52px 28px; }
  .page-hero { padding: 100px 20px 60px; }
  .article-container { padding: 52px 20px 80px; }
  .service-card { padding: 36px 28px; }
  .occasion-card { padding: 32px 20px; }
  .pricing-card { padding: 40px 28px; }
  .faq-question { font-size: 15px; padding: 22px 24px; }
  .faq-answer-inner { padding: 0 24px 22px; font-size: 15px; }
  .btn-primary { font-size: 14px; padding: 13px 28px; }
  .btn-ghost { font-size: 14px; padding: 12px 26px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .product-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
  .section { padding: 64px 16px; }
  .hero { padding: 64px 16px; }
  .hero-desc { font-size: 16px; }
  .service-card { padding: 32px 24px; }
  .service-card p { font-size: 14px; }
  .occasion-card { padding: 28px 16px; }
  .trust-item { padding: 28px 16px; }
  .trust-item .trust-num { font-size: 40px; }
  .cta-panel { padding: 44px 20px; }
  .faq-question { padding: 20px; font-size: 15px; }
  .faq-answer-inner { padding: 0 20px 20px; font-size: 14px; }
  .section-header { margin-bottom: 48px; }
  .section-header p { font-size: 15px; }
}
