/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C0392B;
  --red-dark: #922B21;
  --red-light: #E74C3C;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --cream: #FAF6F0;
  --dark: #1A0A00;
  --dark2: #2C1A0E;
  --text: #3D2B1F;
  --text-light: #7A5C4A;
  --white: #FFFFFF;
  --border: rgba(212,160,23,0.2);
  --shadow: 0 20px 60px rgba(26,10,0,0.15);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
em { font-style: italic; color: var(--red); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--gold-light); border-color: var(--gold-light); }

.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--dark); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-desc { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.4); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(26,10,0,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-zh { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 600; }
.logo-en { font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; color: var(--white); opacity: 0.8; }

.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: none; color: white; cursor: pointer; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--white); text-decoration: none; transition: var(--transition); }
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; cursor: pointer; }

/* ===== HERO ===== */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,0,0.3) 0%, rgba(26,10,0,0.6) 60%, rgba(26,10,0,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow { font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.hero-title { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 20px; }
.hero-zh { font-family: 'Cormorant Garamond', serif; font-size: clamp(5rem, 12vw, 10rem); color: var(--gold); line-height: 1; font-weight: 300; text-shadow: 0 0 60px rgba(212,160,23,0.4); }
.hero-en { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 6vw, 5rem); color: var(--white); font-weight: 300; letter-spacing: 12px; text-transform: uppercase; }
.hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(26,10,0,0.7); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212,160,23,0.2);
  padding: 20px;
}
.stat { text-align: center; padding: 0 40px; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); font-weight: 600; }
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(212,160,23,0.3); }

/* ===== ABOUT ===== */
.section-about { padding: 120px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img-accent {
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--red); color: white;
  padding: 16px 20px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.badge-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; }
.badge-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; }

.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: white; border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
}
.feature:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.1); }
.feature i { color: var(--red); flex-shrink: 0; }
.feature strong { display: block; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.feature span { font-size: 0.9rem; color: var(--dark); font-weight: 500; }

/* ===== DESTINATIONS ===== */
.section-destinations { padding: 120px 0; background: white; }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card { height: 280px; }
.dest-large { grid-column: span 2; height: 380px; }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,0.9) 0%, rgba(26,10,0,0.2) 60%, transparent 100%);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: var(--transition);
}
.dest-tag {
  display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--gold-light);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; width: fit-content;
}
.dest-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: white; margin-bottom: 6px; }
.dest-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; display: none; }
.dest-card:hover .dest-overlay p { display: block; }
.dest-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  transition: var(--transition);
}
.dest-link:hover { gap: 10px; }

/* ===== CULTURE ===== */
.section-culture { position: relative; padding: 120px 0; overflow: hidden; }
.culture-bg { position: absolute; inset: 0; }
.culture-bg img { width: 100%; height: 100%; object-fit: cover; }
.culture-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,10,0,0.92) 0%, rgba(192,57,43,0.7) 100%); }
.culture-content { position: relative; z-index: 2; }
.culture-content .section-title { margin-bottom: 48px; }
.culture-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.culture-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius); padding: 32px 24px;
  transition: var(--transition);
}
.culture-card:hover { background: rgba(255,255,255,0.14); border-color: var(--gold); transform: translateY(-4px); }
.culture-icon { font-size: 2.5rem; margin-bottom: 16px; }
.culture-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 10px; }
.culture-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ===== CUISINE ===== */
.section-cuisine { padding: 120px 0; background: var(--cream); }
.cuisine-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cuisine-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: white; border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--border); transition: var(--transition);
}
.cuisine-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.cuisine-img-wrap { width: 120px; height: 120px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.cuisine-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cuisine-item:hover .cuisine-img-wrap img { transform: scale(1.1); }
.cuisine-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.cuisine-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.cuisine-region {
  display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red);
  padding: 3px 10px; border-radius: 20px;
}

/* ===== FACTS BANNER ===== */
.section-facts { background: var(--dark); padding: 48px 0; }
.facts-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.fact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 32px; border-right: 1px solid rgba(212,160,23,0.2);
}
.fact-item:last-child { border-right: none; }
.fact-item i { color: var(--gold); flex-shrink: 0; width: 28px; height: 28px; }
.fact-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.fact-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* ===== CONTACT ===== */
.section-contact { padding: 120px 0; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--text); }
.contact-item i { color: var(--red); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #E0D5CC;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }

.form-success {
  display: none; align-items: center; gap: 8px;
  color: #27AE60; font-size: 0.9rem; font-weight: 500;
  padding: 12px 16px; background: #EAFAF1; border-radius: 6px;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--dark2); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(212,160,23,0.15); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,160,23,0.1); }
.footer-links h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; color: rgba(255,255,255,0.3); font-size: 0.8rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { display: none; }
  .culture-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-large { grid-column: span 1; }
  .cuisine-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .facts-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fact-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .culture-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .facts-inner { grid-template-columns: 1fr; }
}