/* ===== CSS VARIABLES ===== */
:root {
  --purple: #5B2C8E;
  --purple-light: #7B4CB0;
  --purple-dark: #3D1A5E;
  --gold: #C8A951;
  --gold-light: #E8D48A;
  --gold-dark: #A68A3A;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --warm-white: #FFFBF5;
  --charcoal: #2D2D2D;
  --text-body: #4A4A4A;
  --text-muted: #8A8A8A;
  --border-light: rgba(200, 169, 81, 0.2);
  --font-serif: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
  --font-sans: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', serif;
  --max-width: 1200px;
  --section-padding: 100px 0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--charcoal); background: var(--warm-white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 251, 245, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); transition: all 0.4s ease; }
.nav.scrolled { box-shadow: 0 4px 30px rgba(91, 44, 142, 0.08); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 48px; height: 48px; object-fit: contain; }
.nav-logo-text { font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--purple); line-height: 1.2; }
.nav-logo-text small { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 16px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-body); position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--purple); color: white !important; padding: 10px 24px; border-radius: 8px; font-size: 13px !important; font-weight: 600 !important; transition: all 0.3s; }
.nav-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.lang-link { background: rgba(91,44,142,0.08); color: var(--purple) !important; padding: 6px 14px; border-radius: 6px; font-size: 13px !important; font-weight: 700 !important; letter-spacing: 1px; }
.lang-link::after { display: none !important; }
.lang-link:hover { background: rgba(91,44,142,0.15); }
.mobile-overlay .lang-link { font-size: 16px !important; padding: 8px 20px; border-radius: 8px; background: rgba(91,44,142,0.08); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--cream); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(253,248,240,0.97) 0%, rgba(253,248,240,0.85) 50%, rgba(253,248,240,0.7) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 750px; padding: 120px 0 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--border-light); border-radius: 100px; padding: 8px 20px; font-size: 13px; color: var(--gold-dark); font-weight: 500; margin-bottom: 32px; animation: fadeUp 0.8s ease both; }
.hero-badge::before { content: '✦'; color: var(--gold); }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.25; color: var(--charcoal); margin-bottom: 8px; animation: fadeUp 0.8s 0.15s ease both; }
.hero h1 .accent { color: var(--purple); position: relative; }
.hero h1 .accent::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: var(--gold-light); opacity: 0.5; z-index: -1; border-radius: 4px; }
.hero-en { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--gold-dark); margin-bottom: 24px; animation: fadeUp 0.8s 0.25s ease both; }
.hero p { font-size: 1.1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; animation: fadeUp 0.8s 0.35s ease both; }
.hero-tags { display: flex; gap: 16px; margin: 24px 0 40px; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }
.hero-tag { font-size: 14px; color: var(--purple); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.55s ease both; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 16px 36px; border-radius: 12px; font-size: 16px; font-weight: 600; font-family: var(--font-sans); border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(200, 169, 81, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200, 169, 81, 0.4); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--purple); padding: 16px 36px; border-radius: 12px; font-size: 16px; font-weight: 600; font-family: var(--font-sans); border: 2px solid var(--purple); cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { background: var(--purple); color: white; transform: translateY(-2px); }
.hero-deco { position: absolute; right: -50px; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%); animation: float 6s ease-in-out infinite; }

/* STATS */
.stats { background: var(--purple); padding: 48px 0; position: relative; overflow: hidden; }
.stats::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.04'%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"); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.stat-item { text-align: center; color: white; }
.stat-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; opacity: 0.85; }

/* SECTIONS */
.section { padding: var(--section-padding); }
.section-label { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--charcoal); margin-bottom: 16px; line-height: 1.3; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* SERVICES */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: white; border-radius: 20px; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(0,0,0,0.04); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(91, 44, 142, 0.1); }
.service-img { height: 220px; background: var(--cream-dark); background-size: cover; background-position: center; position: relative; }
.service-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, white); }
.service-body { padding: 28px 28px 32px; }
.service-body h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; color: var(--charcoal); }
.service-body .service-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 12px; }
.service-body p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }
.service-price { display: inline-block; background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: white; padding: 6px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--purple); font-size: 14px; font-weight: 600; margin-left: 16px; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }

/* TRUST */
.trust { background: white; padding: 60px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { font-family: var(--font-sans); font-size: 16px; font-weight: 700; color: var(--text-muted); opacity: 0.5; transition: opacity 0.3s; letter-spacing: 1px; }
.trust-logo:hover { opacity: 0.9; }

/* TESTIMONIALS */
.testimonials { background: var(--warm-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: white; border-radius: 20px; padding: 40px; border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
.testimonial-card:hover { box-shadow: 0 16px 50px rgba(91, 44, 142, 0.1); transform: translateY(-4px); }
.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 20px 20px 0 0; }
.testimonial-quote-icon { font-size: 56px; color: var(--gold); font-family: var(--font-serif); line-height: 1; margin-bottom: 16px; opacity: 0.6; }
.testimonial-text { font-size: 16px; line-height: 1.9; color: var(--text-body); margin-bottom: 28px; font-style: italic; position: relative; }
.testimonial-author-wrap { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-light), var(--purple)); color: white; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; font-family: var(--font-serif); flex-shrink: 0; }
.testimonial-author { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.testimonial-role { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.testimonial-stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 3px; }

/* FOOD */
.food { background: var(--cream); }
.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.food-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; background: var(--cream-dark); cursor: pointer; transition: transform 0.4s; }
.food-card:hover { transform: scale(1.03); }
.food-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; }
.food-card-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.food-card-en { font-family: var(--font-display); font-size: 12px; font-style: italic; opacity: 0.8; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' 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='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-section h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: white; margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-section .btn-primary { position: relative; font-size: 18px; padding: 18px 44px; }

/* FOOTER */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: var(--font-serif); font-size: 1.4rem; color: white; margin-bottom: 4px; }
.footer-brand .footer-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); color: white; }

/* ===== MOBILE HAMBURGER ===== */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 9999; position: relative; }
.nav-hamburger span { display: block; width: 26px; height: 3px; background: var(--charcoal); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.nav-hamburger.active span { background: var(--purple); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 7px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }
/* Mobile overlay - sits outside normal flow */
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--warm-white); z-index: 9998; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.mobile-overlay.open { display: flex; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.mobile-close::before, .mobile-close::after { content: ''; position: absolute; width: 26px; height: 3px; background: var(--purple); border-radius: 2px; }
.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after { transform: rotate(-45deg); }
.mobile-overlay a { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--charcoal); padding: 8px 0; transition: color 0.3s; text-decoration: none; border: none; }
.mobile-overlay a::after { display: none !important; }
.mobile-overlay a:hover { color: var(--purple); }
.mobile-overlay .nav-cta { background: var(--purple); color: white !important; padding: 14px 36px; border-radius: 10px; font-family: var(--font-sans); font-size: 16px !important; font-weight: 600 !important; margin-top: 12px; }
.mobile-lang-switcher { margin: 8px 0; }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
.page-hero-short { min-height: 45vh; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91,44,142,0.85) 0%, rgba(61,26,94,0.9) 100%); }
.page-hero-content { position: relative; z-index: 2; color: white; padding: 140px 0 80px; max-width: 800px; }
.page-hero-content .section-label { color: var(--gold-light); }
.page-hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.25; margin-bottom: 12px; }
.page-hero-en { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--gold-light); margin-bottom: 20px; }
.page-hero-sub { font-size: 1.05rem; line-height: 1.8; opacity: 0.9; }
.page-hero-tags { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.page-hero-tags .hero-tag { color: white; }
.page-hero-tags .hero-tag::before { background: var(--gold-light); }

/* ===== WHY US GRID ===== */
.why-us { background: var(--warm-white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-grid.grid-2x2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.why-grid.grid-4x1 { grid-template-columns: repeat(4, 1fr); }
.why-card { background: white; border-radius: 16px; padding: 36px 28px; text-align: center; border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91, 44, 142, 0.08); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== PACKAGES ===== */
.packages { background: var(--warm-white); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.package-card { background: white; border-radius: 20px; padding: 40px 32px; border: 2px solid rgba(0,0,0,0.04); transition: all 0.4s; position: relative; }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(91, 44, 142, 0.1); }
.package-card.featured { border-color: var(--purple); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: white; padding: 6px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.package-tier { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.package-tier-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 16px; }
.package-price { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 900; color: var(--purple); margin-bottom: 4px; }
.package-price span { font-size: 1rem; font-weight: 500; color: var(--text-body); }
.package-min { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.package-list { list-style: none; margin-bottom: 24px; }
.package-list li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 8px; }
.package-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.package-quote { font-style: italic; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; padding: 12px; background: var(--cream); border-radius: 8px; border-left: 3px solid var(--gold); }
.package-card .btn-primary { width: 100%; justify-content: center; font-size: 14px; padding: 14px 24px; }

/* ===== MENU SECTION ===== */
.menu-section { background: var(--cream); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.menu-category h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--purple); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border-light); }
.menu-category h3 small { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; font-weight: 400; margin-left: 8px; }
.menu-items { display: flex; flex-direction: column; gap: 8px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px dotted var(--border-light); }
.menu-zh { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.menu-en { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); font-style: italic; }

/* ===== PROCESS STEPS ===== */
.process-section { background: var(--warm-white); }
.process-steps { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.process-step { text-align: center; padding: 24px 20px; background: white; border-radius: 16px; flex: 1; min-width: 140px; border: 1px solid rgba(0,0,0,0.04); }
.process-num { font-family: var(--font-serif); font-size: 2rem; color: var(--purple); margin-bottom: 8px; }
.process-step h4 { font-size: 14px; color: var(--charcoal); font-weight: 600; }
.process-arrow { font-size: 1.5rem; color: var(--gold); font-weight: 700; }

/* ===== VENUE SECTION ===== */
.venue-section { background: var(--cream); }
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.venue-card { background: white; border-radius: 20px; padding: 36px; border: 1px solid rgba(0,0,0,0.04); }
.venue-header { font-family: var(--font-serif); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.venue-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.venue-card .venue-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 20px; }
.venue-card ul { list-style: none; margin-bottom: 24px; }
.venue-card li { font-size: 14px; color: var(--text-body); line-height: 2; }
.venue-prices { padding-top: 20px; border-top: 1px solid var(--border-light); }
.venue-prices div { font-size: 13px; color: var(--text-body); line-height: 2; }

/* ===== TIMELINE ===== */
.timeline-section { background: var(--warm-white); }
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 60px; top: 0; bottom: 0; width: 2px; background: var(--border-light); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 32px; position: relative; }
.timeline-time { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--purple); width: 60px; text-align: right; flex-shrink: 0; padding-top: 4px; }
.timeline-content { background: white; border-radius: 12px; padding: 20px 24px; flex: 1; border: 1px solid rgba(0,0,0,0.04); position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -8px; top: 12px; width: 16px; height: 16px; background: var(--gold); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 2px var(--gold-light); }
.timeline-content h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--charcoal); }
.timeline-content p { font-size: 14px; color: var(--text-muted); }

/* ===== STORY TIMELINE (About page) ===== */
.story-section { background: var(--warm-white); }
.story-timeline { max-width: 800px; margin: 0 auto; }
.story-item { display: flex; gap: 40px; margin-bottom: 48px; position: relative; }
.story-year { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 900; color: var(--purple); width: 100px; text-align: right; flex-shrink: 0; padding-top: 4px; position: relative; }
.story-year::after { content: ''; position: absolute; right: -21px; top: 8px; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; border: 3px solid white; }
.story-content { flex: 1; padding-left: 20px; border-left: 2px solid var(--border-light); }
.story-content h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.story-content p { font-size: 15px; color: var(--text-body); line-height: 1.8; }

/* ===== COMMITMENT / BRANCHES ===== */
.commitment-section { background: var(--cream); }
.branches-section { background: var(--warm-white); }
.branches-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.branch-card { background: white; border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; }
.branch-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91, 44, 142, 0.08); }
.branch-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.branch-card .branch-name { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.branch-card .branch-tel { font-size: 15px; color: var(--purple); font-weight: 600; margin-bottom: 12px; }
.branch-card .branch-map { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--gold-dark); font-weight: 500; transition: color 0.3s; }
.branch-card .branch-map:hover { color: var(--purple); }

/* ===== WORKSHOP SCENARIO SECTIONS ===== */
.scenario-section { padding: 80px 0; }
.scenario-section:nth-child(even) { background: var(--cream); }
.scenario-section:nth-child(odd) { background: var(--warm-white); }
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.scenario-grid.reverse { direction: rtl; }
.scenario-grid.reverse > * { direction: ltr; }
.scenario-info .section-label { text-align: left; }
.scenario-info h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.scenario-info .scenario-en { font-family: var(--font-display); font-size: 14px; color: var(--gold); font-style: italic; margin-bottom: 20px; }
.scenario-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: var(--purple); margin-bottom: 4px; }
.scenario-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-body); }
.scenario-min { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.scenario-features { list-style: none; margin-bottom: 24px; }
.scenario-features li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text-body); line-height: 1.9; }
.scenario-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.scenario-highlight { font-style: italic; font-size: 14px; color: var(--purple); padding: 16px; background: var(--cream); border-radius: 10px; border-left: 3px solid var(--gold); margin-bottom: 24px; }
.scenario-visual { background: var(--cream-dark); border-radius: 20px; aspect-ratio: 4/3; background-size: cover; background-position: center; overflow: hidden; }

/* ===== INLINE FAQ (on inner pages) ===== */
.inline-faq { background: var(--cream); padding: 80px 0; }
.inline-faq .faq-item { max-width: 800px; margin-left: auto; margin-right: auto; }

/* ===== HOMEPAGE ENQUIRY FORM ===== */
.cta-form-section { background: var(--cream); padding: 80px 0; }
.cta-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-form-info h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.cta-form-info .cta-form-en { font-family: var(--font-display); font-size: 14px; color: var(--gold); font-style: italic; margin-bottom: 20px; }
.cta-form-info p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.cta-form-info .cta-wa-btn { margin-top: 16px; }
.cta-form-wrap { background: white; border-radius: 20px; padding: 36px; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 8px 30px rgba(91, 44, 142, 0.06); }

/* ===== CASES ===== */
.cases-section { background: var(--warm-white); }
.cases-filter { display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn { background: white; border: 1px solid var(--border-light); padding: 10px 24px; border-radius: 100px; font-size: 14px; font-family: var(--font-sans); color: var(--text-body); cursor: pointer; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--purple); color: white; border-color: var(--purple); }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.case-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91, 44, 142, 0.08); }
.case-card.hidden { display: none; }
.case-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.case-tags { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 8px; }
.case-tags span { background: rgba(91,44,142,0.9); color: white; padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 500; }
.case-body { padding: 28px; }
.case-body h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.case-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.case-body p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.case-quote { font-style: italic; font-size: 13px; color: var(--purple); padding: 12px; background: var(--cream); border-radius: 8px; border-left: 3px solid var(--gold); }

/* ===== CONTACT ===== */
.contact-section { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2, .contact-form-wrap h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.contact-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; text-align: center; }
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-body); }
.contact-item a { color: var(--purple); transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }
.contact-divider { height: 1px; background: var(--border-light); margin: 32px 0; }
.contact-info h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
.contact-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-branch { background: var(--cream); padding: 12px 16px; border-radius: 8px; display: flex; justify-content: space-between; font-size: 14px; }
.contact-branch strong { color: var(--charcoal); }
.contact-branch span { color: var(--purple); font-weight: 500; }

/* CONTACT FORM */
.contact-form-wrap { background: white; border-radius: 20px; padding: 40px; border: 1px solid rgba(0,0,0,0.04); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-light); border-radius: 10px; font-size: 14px; font-family: var(--font-sans); color: var(--charcoal); background: var(--warm-white); transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,44,142,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ===== FAQ ===== */
.faq-section { background: var(--warm-white); max-width: 800px; margin: 0 auto; }
.faq-section .container { max-width: 800px; }
.faq-category { margin-top: 48px; margin-bottom: 24px; }
.faq-category:first-child { margin-top: 0; }
.faq-cat-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--purple); margin-bottom: 2px; }
.faq-cat-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; }
.faq-item { background: white; border-radius: 12px; margin-bottom: 8px; border: 1px solid rgba(0,0,0,0.04); overflow: hidden; transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(91, 44, 142, 0.06); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--charcoal); text-align: left; }
.faq-toggle { font-size: 1.5rem; color: var(--purple); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-body); line-height: 1.8; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-toggle { display: inline-flex; align-items: center; background: var(--cream); border: 1.5px solid var(--border-light); border-radius: 100px; padding: 4px 6px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: var(--font-sans); gap: 0; user-select: none; transition: all 0.3s; }
.lang-toggle:hover { border-color: var(--purple); }
.lang-toggle-zh, .lang-toggle-en { padding: 4px 12px; border-radius: 100px; transition: all 0.25s; line-height: 1.3; }
.lang-toggle-zh { background: var(--purple); color: white; }
.lang-toggle-en { color: var(--text-muted); }
body.lang-en .lang-toggle-zh { background: transparent; color: var(--text-muted); }
body.lang-en .lang-toggle-en { background: var(--purple); color: white; }

/* Language visibility */
/* Language: EN link style */

/* data-lang-en swap elements keep their original display */
[data-lang-en] { /* no special styles needed, JS handles text swap */ }

/* Mobile language toggle in overlay */
.mobile-overlay .lang-toggle { margin-top: 8px; font-size: 15px; padding: 6px 8px; }
.mobile-overlay .lang-toggle-zh, .mobile-overlay .lang-toggle-en { padding: 6px 16px; }

/* ===== BLOG ===== */
.blog-list-section { background: var(--warm-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(91, 44, 142, 0.1); }
.blog-card-img { display: block; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px 28px 28px; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card-body h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: inherit; transition: color 0.3s; }
.blog-card-body h3 a:hover { color: var(--purple); }
.blog-card-body p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.blog-pagination { text-align: center; margin-top: 48px; }
.blog-pagination .nav-links a, .blog-pagination .nav-links span { display: inline-block; padding: 8px 16px; margin: 0 4px; border-radius: 8px; font-size: 14px; }
.blog-pagination .nav-links .current { background: var(--purple); color: white; }

/* Blog Article */
.blog-article { background: var(--warm-white); }
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-featured-img { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.blog-featured-img img { width: 100%; height: auto; }
.blog-body { font-size: 16px; line-height: 2; color: var(--text-body); }
.blog-body h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin: 40px 0 16px; }
.blog-body h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin: 32px 0 12px; }
.blog-body p { margin-bottom: 20px; }
.blog-body ul, .blog-body ol { margin: 16px 0 24px 24px; }
.blog-body li { margin-bottom: 8px; }
.blog-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; background: var(--cream); border-radius: 8px; margin: 24px 0; font-style: italic; color: var(--purple); }
.blog-body img { border-radius: 12px; margin: 24px 0; }
.blog-body a { color: var(--purple); font-weight: 500; }
.blog-body a:hover { color: var(--gold-dark); }
.blog-cta { max-width: 800px; margin: 48px auto 0; text-align: center; background: linear-gradient(135deg, var(--purple-dark), var(--purple)); padding: 48px; border-radius: 20px; color: white; }
.blog-cta h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 8px; }
.blog-cta p { opacity: 0.85; margin-bottom: 24px; }
.blog-cta .btn-primary { display: inline-flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none !important; }
  .hero-content { padding: 100px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.2rem; }
  .services-grid, .testimonials-grid, .packages-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-col { text-align: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .why-grid, .why-grid.grid-2x2, .why-grid.grid-4x1 { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .branches-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .page-hero-content { padding: 100px 0 60px; text-align: center; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .page-hero-tags { justify-content: center; }
  .section-header { text-align: center; }
  .story-item { flex-direction: column; gap: 8px; }
  .story-year { text-align: left; width: auto; }
  .story-year::after { display: none; }
  .story-content { border-left: none; padding-left: 0; }
  .timeline::before { left: 20px; }
  .timeline-time { width: 20px; font-size: 0; }
  .timeline-content::before { left: -28px; }
  .scenario-grid, .scenario-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .scenario-info { text-align: center; }
  .scenario-info .section-label { text-align: center; }
  .scenario-features { text-align: left; display: inline-block; }
  .cta-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-form-info { text-align: center; }
  .cta-section h2 { font-size: 1.4rem; }
  .trust-logos { gap: 24px; }
  .contact-form-wrap { padding: 24px; }
  .package-card { padding: 32px 24px; }
  .faq-question { font-size: 14px; padding: 16px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta { padding: 32px 24px; }
}
/* English page: disable reveal animation */
html[lang=en] .reveal, html[lang=en-US] .reveal { opacity: 1 !important; transform: none !important; }

/* TranslatePress language switcher nav styling */
.nav-links .trp-language-switcher { display: flex; align-items: center; }
.nav-links .trp-language-switcher .trp-ls-stacked-image { display: none; }
.nav-links .trp-language-switcher a { font-size: 13px !important; font-weight: 600 !important; color: var(--purple) !important; background: rgba(91,44,142,0.08); padding: 6px 14px; border-radius: 6px; letter-spacing: 0.5px; transition: all 0.3s; text-decoration: none !important; }
.nav-links .trp-language-switcher a::after { display: none !important; }
.nav-links .trp-language-switcher a:hover { background: rgba(91,44,142,0.15); }
.nav-links .trp-language-switcher .trp-ls-shortcode-current-language { font-size: 13px !important; font-weight: 600 !important; color: var(--purple) !important; background: rgba(91,44,142,0.08); padding: 6px 14px; border-radius: 6px; cursor: pointer; }
.nav-links .trp-language-switcher .trp-ls-shortcode-language { padding: 6px 14px !important; font-size: 13px !important; }
.mobile-lang-switcher .trp-language-switcher a, .mobile-overlay .trp-language-switcher a { font-size: 16px !important; padding: 8px 20px; border-radius: 8px; background: rgba(91,44,142,0.08); color: var(--purple) !important; font-weight: 600 !important; }

    /* ===== LANDING PAGE STYLES ===== */
    .lp-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,251,245,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(200,169,81,0.2); }
    .lp-header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .lp-logo { display: flex; align-items: center; gap: 12px; }
    .lp-logo img { width: 44px; height: 44px; object-fit: contain; }
    .lp-logo-text { font-family: var(--font-serif); font-weight: 700; font-size: 16px; color: var(--purple); line-height: 1.2; }
    .lp-logo-text small { display: block; font-family: var(--font-display); font-size: 10px; font-weight: 400; color: var(--gold); letter-spacing: 1px; }

    .lp-hero { position: relative; min-height: 80vh; display: flex; align-items: center; background: var(--cream); overflow: hidden; padding-top: 70px; }
    .lp-hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(253,248,240,0.97) 0%, rgba(91,44,142,0.06) 100%); }
    .lp-hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 0 80px; }
    .lp-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--border-light); border-radius: 100px; padding: 8px 20px; font-size: 13px; color: var(--gold-dark); font-weight: 500; margin-bottom: 24px; }
    .lp-hero-badge::before { content: '\2726'; color: var(--gold); }
    .lp-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.3; color: var(--charcoal); margin-bottom: 8px; }
    .lp-hero h1 .accent { color: var(--purple); }
    .lp-hero-en { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--gold-dark); margin-bottom: 20px; }
    .lp-hero p { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }

    .lp-trust { background: var(--purple); padding: 32px 0; }
    .lp-trust p { text-align: center; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 16px; letter-spacing: 2px; text-transform: uppercase; }
    .lp-trust-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
    .lp-trust-logos span { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 1px; }

    .lp-selling { padding: 80px 0; background: var(--warm-white); }
    .lp-selling-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
    .lp-sell-card { text-align: center; padding: 40px 24px; background: white; border-radius: 16px; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 4px 20px rgba(91,44,142,0.04); }
    .lp-sell-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
    .lp-sell-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
    .lp-sell-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

    .lp-packages { padding: 80px 0; background: var(--cream); }
    .lp-pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 48px auto 0; }
    .lp-pkg { background: white; border-radius: 16px; padding: 36px; border: 1px solid rgba(0,0,0,0.04); text-align: center; }
    .lp-pkg h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
    .lp-pkg-en { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 16px; }
    .lp-pkg-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: var(--purple); margin-bottom: 4px; }
    .lp-pkg-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-body); }
    .lp-pkg ul { list-style: none; text-align: left; margin-top: 20px; }
    .lp-pkg ul li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text-body); line-height: 2; }
    .lp-pkg ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
    .lp-pkg.featured { border: 2px solid var(--purple); position: relative; }
    .lp-pkg.featured::after { content: '\2605 \71B1\9580'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--purple); color: white; padding: 4px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; white-space: nowrap; }

    .lp-testimonial { padding: 60px 0; background: var(--warm-white); }
    .lp-testimonial-card { max-width: 600px; margin: 0 auto; text-align: center; }
    .lp-testimonial-card .stars { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 4px; }
    .lp-testimonial-card blockquote { font-family: var(--font-serif); font-size: 1.15rem; color: var(--charcoal); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
    .lp-testimonial-card cite { font-size: 14px; color: var(--text-muted); font-style: normal; }

    .lp-form-section { padding: 80px 0; background: var(--cream); }
    .lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .lp-form-info h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
    .lp-form-info .lp-form-en { font-family: var(--font-display); font-size: 14px; color: var(--gold); font-style: italic; margin-bottom: 20px; }
    .lp-form-info p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
    .lp-form-wrap { background: white; border-radius: 20px; padding: 36px; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 8px 30px rgba(91,44,142,0.06); }

    .lp-footer { background: var(--charcoal); padding: 32px 0; text-align: center; }
    .lp-footer p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
    .lp-footer a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
    .lp-footer a:hover { color: var(--gold); }
    .lp-footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; }

    @media (max-width: 768px) {
      .lp-selling-grid { grid-template-columns: 1fr; gap: 20px; }
      .lp-pkg-grid { grid-template-columns: 1fr; }
      .lp-form-grid { grid-template-columns: 1fr; gap: 32px; }
      .lp-hero-content { padding: 40px 0 60px; }
      .lp-trust-logos { gap: 20px; }
      .lp-form-info { text-align: center; }
    }
  .lp-hero .reveal,.lp-hero-content .reveal,.lp-trust .reveal,.lp-selling .reveal,.lp-packages .reveal,.lp-testimonial .reveal,.lp-form-section .reveal,.lp-hero-badge,.lp-hero h1,.lp-hero p,.lp-hero .hero-buttons{opacity:1 !important;transform:none !important;}

/* LP page reveal override */
.lp-hero .reveal, .lp-hero-content .reveal, .lp-trust .reveal, .lp-selling .reveal, .lp-packages .reveal, .lp-testimonial .reveal, .lp-form-section .reveal, .lp-hero-badge, .lp-hero h1, .lp-hero p, .lp-hero .hero-buttons { opacity: 1 !important; transform: none !important; }
.lp-hero-content { position: relative; z-index: 2; max-width: 720px; padding: 60px 0 80px; }
.lp-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.35; color: var(--charcoal); margin-bottom: 8px; }
.lp-flow { padding: 80px 0; background: var(--warm-white); }
.lp-flow-steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.lp-flow-step { text-align: center; flex: 1; min-width: 150px; max-width: 220px; }
.lp-flow-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: white; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.lp-flow-step h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.lp-flow-step p { font-size: 13px; color: var(--text-muted); }
.lp-flow-arrow { font-size: 1.5rem; color: var(--gold); margin-top: 16px; flex-shrink: 0; }
.lp-selling { padding: 80px 0; background: var(--cream); }
.lp-pricing { padding: 60px 0; background: var(--warm-white); text-align: center; }
.lp-price-box { display: inline-block; background: white; border-radius: 20px; padding: 48px 64px; border: 2px solid var(--purple); box-shadow: 0 8px 30px rgba(91,44,142,0.08); }
.lp-price-box h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.lp-price-amount { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: var(--purple); }
.lp-price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-body); }
.lp-price-note { font-size: 14px; color: var(--gold-dark); margin-top: 8px; font-weight: 600; }
.lp-price-features { list-style: none; text-align: left; margin-top: 24px; }
.lp-price-features li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text-body); line-height: 2; }
.lp-price-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 768px) { .lp-flow-steps { flex-direction: column; align-items: center; }
.lp-flow-arrow { transform: rotate(90deg); }
.lp-price-box { padding: 36px 24px; width: 100%; } }
.lp-hero { position: relative; min-height: 75vh; display: flex; align-items: center; background: var(--cream); overflow: hidden; padding-top: 70px; }
.lp-hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(253,248,240,0.97) 0%, rgba(200,169,81,0.06) 100%); }
.lp-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.35; color: var(--charcoal); margin-bottom: 8px; }
.lp-story { padding: 80px 0; background: var(--warm-white); }
.lp-story-content { max-width: 700px; margin: 0 auto; text-align: center; }
.lp-story-content p { font-family: var(--font-serif); font-size: 1.15rem; color: var(--charcoal); line-height: 2; margin-bottom: 20px; }
.lp-story-content .lp-story-highlight { font-style: italic; color: var(--purple); padding: 24px; background: var(--cream); border-radius: 16px; border-left: 4px solid var(--gold); text-align: left; font-size: 1rem; }
.lp-features { padding: 80px 0; background: var(--cream); }
.lp-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.lp-feature-card { background: white; border-radius: 16px; padding: 32px; border: 1px solid rgba(0,0,0,0.04); display: flex; gap: 16px; align-items: flex-start; }
.lp-feature-icon { font-size: 2rem; flex-shrink: 0; }
.lp-feature-card h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.lp-feature-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.lp-price-banner { padding: 48px 0; background: var(--purple); text-align: center; color: white; }
.lp-price-banner h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; opacity: 0.85; }
.lp-price-banner .price { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: var(--gold-light); }
.lp-price-banner .price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.7); }
.lp-price-banner .note { font-size: 14px; opacity: 0.7; margin-top: 8px; }
@media (max-width: 768px) { .lp-features-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .lp-story-content .lp-story-highlight { text-align: center; border-left: none; border-top: 4px solid var(--gold); } }
/* Additional LP reveal overrides */
.lp-flow .reveal, .lp-flow-step, .lp-flow-arrow, .lp-features .reveal, .lp-pricing .reveal, .lp-story .reveal, .lp-price-banner .reveal, .lp-feature-card { opacity: 1 !important; transform: none !important; }
html[lang=en-US] .lp-hero-en { display: none; }

/* Package card photos v3 */
.package-card { overflow: hidden; position: relative; }
.package-card-img { height: 200px; background-size: cover; background-position: center; margin: -32px -32px 0 -32px; border-radius: 16px 16px 0 0; }
.package-card .package-badge { position: absolute; top: 170px; left: 50%; transform: translateX(-50%); z-index: 2; white-space: nowrap; }
.package-card .package-tier { margin-top: 20px; }
.package-card.featured .package-tier { margin-top: 32px; }
