/* ============================================
   TẾT QUÊ HƯƠNG — Main Stylesheet
   style.css
   ============================================ */

/* ── CSS Variables ── */
:root {
  --red:        #691107;
  --red-light:  #aa3225;
  --gold:       #D4AF37;
  --gold-light: #F5D060;
  --black:      #260a0a;
  --dark:       #110D09;
  --warm:       #1A1108;
  --cream:      #F5EDD6;
  --text:       #E8D9BB;
  --muted:      rgba(232, 217, 187, 0.45);
   --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Be Vietnam Pro', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s, height 0.3s;
}

body:hover .cursor-ring {
  opacity: 1;
}

/* ── Noise Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 500;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  animation: fadeDown 0.8s 0.3s ease forwards;
}

.nav-logo span {
  color: var(--red-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  opacity: 0;
  animation: fadeDown 0.8s ease forwards;
  transition: color 0.3s;
}

.nav-links li:nth-child(1) a { animation-delay: 0.4s; }
.nav-links li:nth-child(2) a { animation-delay: 0.5s; }
.nav-links li:nth-child(3) a { animation-delay: 0.6s; }
.nav-links li:nth-child(4) a { animation-delay: 0.7s; }
.nav-links li:nth-child(5) a { animation-delay: 0.8s; }
.nav-links li:nth-child(6) a { animation-delay: 0.9s; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  opacity: 0;
  animation: fadeDown 0.8s 1s ease forwards;
}

.nav-contact:hover {
  background: var(--red);
  color: var(--cream);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback animated background */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(192, 57, 43, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
    linear-gradient(170deg, #0A0806 0%, #1A0A08 40%, #0D0809 100%);
  z-index: 0;
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.15); }
}

/* ── Floating Particles ── */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(40px) scale(0.5); opacity: 0; }
}

/* ── Lanterns Decoration ── */
.lanterns {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.lantern {
  position: absolute;
  width: 24px;
  height: 36px;
  border-radius: 50% 50% 60% 60% / 40% 40% 60% 60%;
  top: -10px;
  animation: sway 4s ease-in-out infinite;
}

.lantern::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  background: rgba(212, 175, 55, 0.6);
}

.lantern::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 12px;
  background: rgba(212, 175, 55, 0.5);
}

@keyframes sway {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

.lantern:nth-child(1) { left: 5%;   background: radial-gradient(circle at 40% 40%, #E74C3C, #8B0000); animation-delay: 0s;    animation-duration: 3.5s; }
.lantern:nth-child(2) { left: 12%;  background: radial-gradient(circle at 40% 40%, #F39C12, #B7770D); animation-delay: 0.3s;  animation-duration: 4.2s; width: 18px; height: 28px; }
.lantern:nth-child(3) { left: 20%;  background: radial-gradient(circle at 40% 40%, #E74C3C, #8B0000); animation-delay: 0.6s;  animation-duration: 3.8s; }
.lantern:nth-child(4) { left: 30%;  background: radial-gradient(circle at 40% 40%, #F39C12, #B7770D); animation-delay: 0.2s;  animation-duration: 4.5s; width: 20px; height: 32px; }
.lantern:nth-child(5) { right: 5%;  background: radial-gradient(circle at 40% 40%, #E74C3C, #8B0000); animation-delay: 0.4s;  animation-duration: 3.6s; }
.lantern:nth-child(6) { right: 12%; background: radial-gradient(circle at 40% 40%, #F39C12, #B7770D); animation-delay: 0.1s;  animation-duration: 4.1s; width: 18px; height: 28px; }
.lantern:nth-child(7) { right: 20%; background: radial-gradient(circle at 40% 40%, #E74C3C, #8B0000); animation-delay: 0.7s;  animation-duration: 3.9s; }
.lantern:nth-child(8) { right: 30%; background: radial-gradient(circle at 40% 40%, #F39C12, #B7770D); animation-delay: 0.5s;  animation-duration: 4.3s; width: 20px; height: 32px; }

/* ── Hero Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to right, rgba(10, 8, 6, 0.7) 0%, rgba(10, 8, 6, 0.2) 50%, rgba(10, 8, 6, 0.5) 100%),
    linear-gradient(to top,   rgba(10, 8, 6, 0.9) 0%, rgba(10, 8, 6, 0.1) 50%, rgba(10, 8, 6, 0.3) 100%);
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 48px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '—';
  margin: 0 16px;
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 1.2s 1s ease forwards;
}

.hero-title strong {
  font-weight: 700;
  font-style: normal;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--red-light);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1s 1.3s ease forwards;
}

.hero-cta-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 1.6s ease forwards;
}

/* ── Buttons ── */
.btn-primary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-secondary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.btn-secondary::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.btn-secondary:hover { color: var(--cream); }
.btn-secondary:hover::before { width: 60px; }

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 2s ease forwards;
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── Hero Social Links ── */
.hero-social {
  position: absolute;
  left: 48px;
  bottom: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 1.8s ease forwards;
}

.hero-social::before {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--muted));
}

.hero-social a {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  writing-mode: vertical-rl;
  transition: color 0.3s;
}

.hero-social a:hover { color: var(--gold); }

/* ── Year Badge ── */
.year-badge {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 4;
  opacity: 0;
  animation: fadeUp 1s 1.8s ease forwards;
}

.year-badge span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.year-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  right: -8px;
  bottom: 0;
  line-height: 1;
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker-wrap {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 48px;
}

.ticker-item::after {
  content: '✦';
  margin-left: 48px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  padding: 140px 10vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}

.about-heading em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background:#691107;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  color: rgba(212, 175, 55, 0.15);
  user-select: none;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin: 20px;
}

.about-image-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.about-image-badge strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

/* ── Stats ── */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
/* ============================================
  CUATOI
   ============================================ */
   #cuatoi{
    padding: 50px 5vw;;
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 100px;
background-color: #691107; }
.cuatoitext {
    grid-column: 2; 
    text-align: left; /* Chữ căn lề trái để tạo sự mạnh mẽ, hiện đại */
    display: flex;
    flex-direction: column;
    gap: 24px; /* Khoảng cách giữa tiêu đề và đoạn văn */
}

   .cuatoi-heading{
      font-family: 'Cormorant Garamond', serif;

  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
text-align: left;

font-size: clamp(2rem, 6vw, 4.5rem); 
 
   }
   .cuatoi-heading em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
text-align: right;
}
   .cuatoi-label{
    font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
 
  margin-bottom: 40px;
   }
   .btn-third {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.btn-third::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.btn-third:hover { color: var(--cream); }
.btn-third:hover::before { width: 60px; }
/* ── Banner ảnh nền cho page-hero ── */

.page-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
 
  background-repeat:   no-repeat;
  background-color:    #1A0505;     /* màu nền phần thừa phía dưới */
background-size:     cover;
  background-position: 50% 20%; /* lấy phần mặt người — thường ở 1/4 trên */
  
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index:    1;
}

.page-hero::after {
  content: '家';
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(200px, 30vw, 420px);
  color: rgba(212,175,55,0.04);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }

.page-back {
  position: absolute; top: 100px; left: 48px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.page-back::before { content: '←'; }
.page-back:hover { color: var(--gold); }
.page-label {
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;

}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 300; font-style: italic;
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
    
}
.page-title em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
}

.page-desc {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--muted); line-height: 1.8;
  max-width: 560px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp 0.8s 0.8s ease forwards;
 
}
/* ============================================
   TICKER  2
   ============================================ */
.ticker2-wrap {
 
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  margin-bottom: 0; /* Ép ticker sát vào Divider */

}

.ticker2-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 25s linear infinite;
}

.ticker2-item {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 48px;
}

.ticker2-item::after {
  content: '✦';
  margin-left: 48px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 24px;
  padding: 0 10vw; margin: 80px 0 60px;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
}
.divider-text {
  font-size: 9px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}

/* ── CHAPTER HEADER ── */
.chapter {
  padding: 0 10vw;
  margin-bottom: 80px;
  text-align: center;
}

.chapter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300; line-height: 0.8;
  color: rgba(212,175,55,0.08);
  display: block; margin-bottom: -20px;
}

.chapter-tag {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 16px; display: block;
}

.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.05;
  margin-bottom: 24px;
  margin-top: 10px;
  line-height: 1.1;
}
.chapter-title em {
  font-style: normal; font-weight: 600; color: var(--gold-light);
}

.chapter-body {
  font-size: 16px; line-height: 2;
  color: var(--muted); max-width: 640px;
margin-left: auto;  
  margin-right: auto;  
  text-align: center;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Cột ảnh 1 phần, cột chữ 2 phần */
  gap: 60px;
  align-items: center;
  padding: 80px 10vw;
}


/* ── CHAPTER HEADER ── */
.chapter {
text-align: center;
  padding: 40px 10vw; /* Giảm padding-top xuống còn khoảng 40px */
  margin-bottom: 20px;
}

.chapter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300; line-height: 0.8;
  color: rgba(212,175,55,0.08);
  display: block; margin-bottom: -20px;
}

.chapter-tag {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 16px; display: block;
}

.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.05;
  margin-bottom: 24px;
}
.chapter-title em {
  font-style: normal; font-weight: 600; color: var(--gold-light);
}

.chapter-body {
  font-size: 16px; line-height: 2;
  color: var(--muted); max-width: 640px;
}

/* ── STORY BLOCK (Text + Image) ── */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }

.story-text {
  padding: 80px 8vw;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,0.02);
}
.story-text .tag {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.story-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.2;
  margin-bottom: 20px;
}
.story-text h3 em { font-style: normal; color: var(--gold-light); font-weight: 600; }
.story-text p {
  font-size: 14px; line-height: 1.9;
  color: var(--muted); margin-bottom: 16px;
}

/* ── IMAGE BLOCKS ── */
.img-block {
  position: relative; overflow: hidden;
  min-height: 480px;
  background: rgba(255,255,255,0.03);
}
.img-block img,
.img-block video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s ease;
}
.img-block:hover img,
.img-block:hover video { transform: scale(1.04); }

.img-placeholder {
  width: 100%; height: 100%; min-height: 480px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, rgba(212,175,55,0.08) 100%);
}
.img-placeholder .icon { font-size: 48px; opacity: 0.4; }
.img-placeholder .label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.img-placeholder .path {
  font-size: 12px; color: rgba(212,175,55,0.5);
  font-family: monospace; padding: 6px 14px;
  border: 1px solid rgba(212,175,55,0.2);
}

.img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 11px; letter-spacing: 0.15em;
  color: rgba(232,217,187,0.7);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.img-block:hover .img-caption { transform: translateY(0); }

/* ── VIDEO BLOCK ── */
.video-section {
  padding: 0 5vw; margin: 60px 0;
}
.video-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0A0806;
}
.video-wrap video,
.video-wrap iframe {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.video-label {
  position: absolute; top: 24px; left: 24px;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  backdrop-filter: blur(8px);
}
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #1A0505 0%, #2D0808 50%, #1A0A04 100%);
  border: 1px solid rgba(212,175,55,0.1);
}
.video-play-icon {
  width: 72px; height: 72px;
  border: 2px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
  opacity: 0.6;
}
.video-placeholder .label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.video-placeholder .path {
  font-size: 12px; color: rgba(212,175,55,0.4);
  font-family: monospace; padding: 6px 14px;
  border: 1px solid rgba(212,175,55,0.15);
}
/* ── MASONRY GALLERY ── */
.gallery-section {
  padding: 0 5vw; margin: 60px 0;
}
.gallery-header {
  padding: 0 0 40px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 4px;
}
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item:nth-child(1)  { grid-column: 1 / 6;  grid-row: 1 / 5; }
.g-item:nth-child(2)  { grid-column: 6 / 9;  grid-row: 1 / 3; }
.g-item:nth-child(3)  { grid-column: 9 / 13; grid-row: 1 / 4; }
.g-item:nth-child(4)  { grid-column: 6 / 9;  grid-row: 3 / 5; }
.g-item:nth-child(5)  { grid-column: 9 / 11; grid-row: 4 / 7; }
.g-item:nth-child(6)  { grid-column: 11/ 13; grid-row: 4 / 6; }
.g-item:nth-child(7)  { grid-column: 1 / 4;  grid-row: 5 / 8; }
.g-item:nth-child(8)  { grid-column: 4 / 9;  grid-row: 5 / 7; }
.g-item:nth-child(9)  { grid-column: 11/ 13; grid-row: 6 / 8; }
.g-item:nth-child(10) { grid-column: 4 / 7;  grid-row: 7 / 9; }
.g-item:nth-child(11) { grid-column: 7 / 10; grid-row: 7 / 9; }
.g-item:nth-child(12) { grid-column: 10/ 13; grid-row: 8 / 10; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  font-size: 9px; letter-spacing: 0.2em;
  color: rgba(232,217,187,0.2); text-transform: uppercase;
}
.g-placeholder span { font-size: 20px; opacity: 0.3; }
.g-item:nth-child(odd)  .g-placeholder { background: rgba(192,57,43,0.08); }
.g-item:nth-child(even) .g-placeholder { background: rgba(212,175,55,0.06); }
/* ── TIMELINE ── */
.timeline {
  padding: 80px 10vw;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: calc(10vw + 24px);
  top: 80px; bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.3), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: start;
}
.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.timeline-date {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400; font-style: italic;
  color: var(--cream); margin-bottom: 12px; line-height: 1.2;
}
.timeline-desc {
  font-size: 14px; line-height: 1.9;
  color: var(--muted); max-width: 560px;
}

/* ── FULL WIDTH IMAGE ── */
.full-img {
  position: relative; overflow: hidden;
  height: 60vh; margin: 4px 0;
}
.full-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  will-change: transform;
}
.full-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.full-img-text {
  position: absolute; left: 10vw; top: 50%;
  transform: translateY(-50%);
}
.full-img-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.1;
}
.full-img-text h2 em { color: var(--gold-light); font-style: normal; font-weight: 600; }
.full-img-text p {
  font-size: 14px; color: rgba(232,217,187,0.7);
  margin-top: 12px; letter-spacing: 0.05em;
}

/* ── CLIP-PATH REVEAL (Lumen style) ── */
.img-reveal-wrap {
  overflow: hidden;
  position: relative;
}
.img-reveal {
  clip-path: inset(100% 0 0 0);
  transform: scale(1.1);
  transition:
    clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
    transform  1.1s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img-reveal.visible {
  clip-path: inset(0% 0 0 0);
  transform: scale(1);
}
.img-reveal-left {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.1);
  transition:
    clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
    transform  1.1s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img-reveal-left.visible {
  clip-path: inset(0 0% 0 0);
  transform: scale(1);
}
.img-reveal-right {
  clip-path: inset(0 0 0 100%);
  transform: scale(1.1);
  transition:
    clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
    transform  1.1s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img-reveal-right.visible {
  clip-path: inset(0 0 0 0%);
  transform: scale(1);
}
.img-reveal.delay-1 { transition-delay: 0.1s; }
.img-reveal.delay-2 { transition-delay: 0.25s; }
.img-reveal.delay-3 { transition-delay: 0.4s; }
/* ── 3-COL PHOTO ROW ── */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 4px 0;
}
.photo-row-item {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
}
.photo-row-item.wide { aspect-ratio: 4/3; }
.photo-row-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.photo-row-item:hover img { transform: scale(1.05); }
.photo-row-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.photo-row-item:hover .overlay { opacity: 1; }
.photo-row-item .photo-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,217,187,0.8);
  opacity: 0; transition: opacity 0.4s 0.1s;
}
.photo-row-item:hover .photo-label { opacity: 1; }

/* ── PULL QUOTE ── */
.pull-quote {
  padding: 80px 10vw;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  margin: 60px 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; color: rgba(192,57,43,0.15);
  position: absolute; top: 0; left: 10vw;
  line-height: 1;
}
.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.4;
  max-width: 800px; margin: 0 auto 20px;
}
.pull-quote-text em { color: var(--gold-light); font-style: normal; }
.pull-quote-author {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   AM THUC 
   ============================================ */
.at-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0 10vw 80px;
  overflow: hidden;
}

.at-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 80%, rgba(105,17,7,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,175,55,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #0d0905 0%, #200a06 50%, #0d0905 100%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}

.at-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,9,5,0.85) 0%, rgba(13,9,5,0.1) 60%);
}

.at-hero__content {
  position: relative; z-index: 2;
}

.at-hero__label {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.at-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.6s ease forwards;
}

.at-hero__title em {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
}

.at-hero__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}


/* Chữ trang trí */
.at-hero__deco {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 25vw, 360px);
  color: rgba(212,175,55,0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  animation: fadeUp 1.2s 1s ease forwards;
  opacity: 0;
}

/* ── INTRO ── */
.at-intro {
  padding: 100px 10vw;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.at-intro__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 300;
  color: rgba(212,175,55,0.08);
  line-height: 1;
  flex-shrink: 0;
}

.at-intro__label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.at-intro__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.at-intro__heading em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
}

.at-intro__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
}

/* ============================================
   MENU SECTION — 5 HÀNG
   ============================================ */
.at-menu {
  padding: 60px 6vw 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── Hàng ── */
.at-row {
  display: grid;
  gap: 24px;
}

.at-row--2 {
  grid-template-columns: 1fr 1fr;
}

.at-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
/* ============================================
   FOOD CARD
   ============================================ */
.food-card {
 
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}
.food-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 1300;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 20px;   /* ← tăng từ 12px lên tùy ý */
  transition: color 0.3s;
  text-align: center;
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  font-style: italic;

}
.food-card__name em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  font-style: italic;
}

.food-card__desc {
  font-size: clamp(10px, 1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--cream);
 opacity: 0.8; /* Làm mờ nhẹ để tạo cảm giác sâu lắng */
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
}
/* ── Image Wrap ── */
.food-card__img-wrap {
  position: relative;
  overflow: hidden;
  /* Hàng 2 cột: tỉ lệ cao hơn */
  aspect-ratio: 4 / 3;
}

.at-row--3 .food-card__img-wrap {
  aspect-ratio: 3 / 2;
}

.food-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.food-card:hover .food-card__img-wrap img {
  transform: scale(1.07);
}

/* Overlay */
.food-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,9,5,0.5) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.food-card:hover .food-card__overlay {
  opacity: 1;
}
/* Badge số thứ tự */
.food-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(10,8,6,0.7);
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.2);
}


/* ── Info Box ── */
.food-card__info {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212,175,55,0.08);
  position: relative;
}

/* Đường viền vàng xuất hiện khi hover */
.food-card__info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.food-card:hover .food-card__info::before {
  transform: scaleX(1);
}

.food-card__tag {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.food-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.food-card:hover .food-card__name {
  color: var(--gold-light);
}

.food-card__desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  flex: 1;
  margin-bottom: 16px;
}

.food-card__origin {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.5);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

/* ── Scroll Reveal overrides ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Decorative row number labels ── */
.at-row-label {
  padding: 48px 6vw 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.at-row-label__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(212,175,55,0.3);
  text-transform: uppercase;
}

.at-row-label__line {
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.08);
}

/* ============================================================
   VĂN HÓA PAGE — vanhoa.html
   Layout: Bento grid bất đối xứng, collage, diagonal
   ============================================================ */

/* ── HERO ── */
.vh-hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 80px;
  overflow: hidden;
}

/* Chữ Hán bay nền */
.vh-hero__chars {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-evenly;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.vh-hero__chars span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 280px); font-weight: 300;
  color: rgba(212,175,55,0.04); line-height: 1;
  animation: charFloat 6s ease-in-out infinite alternate;
}
.vh-hero__chars span:nth-child(2) { animation-delay: 1s; }
.vh-hero__chars span:nth-child(3) { animation-delay: 2s; }
.vh-hero__chars span:nth-child(4) { animation-delay: 3s; }
@keyframes charFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.vh-hero__content { position: relative; z-index: 2; }

.vh-hero__tag {
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}

.vh-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 11vw, 150px);
  font-weight: 300; line-height: 0.88;
  color: var(--cream);
  opacity: 0; animation: fadeUp 1.1s 0.6s ease forwards;
}
.vh-hero__title em {
  display: block; font-style: normal; font-weight: 700;
  color: var(--gold-light);
}

.vh-hero__subtitle-row {
  display: flex; align-items: center; gap: 24px;
  margin-top: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}
.vh-hero__line { width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
.vh-hero__subtitle { font-size: 14px; color: var(--muted); font-style: italic; }

/* Stats bottom right */
.vh-hero__stats {
  position: absolute; right: 8vw; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 28px; align-items: flex-end;
  opacity: 0; animation: fadeUp 1s 1.1s ease forwards;
}
.vh-hero__stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 300;
  color: var(--gold); line-height: 1;
}
.vh-hero__stat span {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); text-align: right;
}

/* ── OPENING STATEMENT ── */
.vh-statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
  padding: 100px 8vw;
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.vh-statement__big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 14vw, 200px); font-weight: 300;
  color: rgba(212,175,55,0.1); line-height: 1;
}
.vh-statement__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px); font-style: italic;
  color: var(--cream); line-height: 1.4; margin-bottom: 20px;
}
.vh-statement__body {
  font-size: 15px; line-height: 1.9;
  color: var(--muted); max-width: 560px;
}

/* ── SECTION WRAPPER ── */
.vh-section {
  padding: 100px 6vw;
}
.vh-section--dark {
  background: var(--dark);
}

.vh-section__header {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 60px; flex-wrap: wrap;
}
.vh-section__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300;
  color: rgba(212,175,55,0.1); line-height: 1;
  flex-shrink: 0;
}
.vh-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.05;
}
.vh-section__title em { font-style: normal; font-weight: 700; color: var(--gold-light); }
.vh-section__desc {
  font-size: 13px; color: var(--muted); margin-top: 8px;
  width: 100%; padding-left: calc(40px + 24px);
  font-style: italic;
}

/* ── BENTO GRID ── */
.vh-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px;
  gap: 4px;
}

.vh-bento__item { overflow: hidden; position: relative; cursor: pointer; }
.vh-bento__item:hover { z-index: 2; }

/* Layout bento */
.vh-bento__item--large { grid-column: 1 / 8; grid-row: 1 / 7; }
.vh-bento__item--text  { grid-column: 8 / 13; grid-row: 1 / 4; }
.vh-bento__item--small:nth-child(3) { grid-column: 8 / 11; grid-row: 4 / 7; }
.vh-bento__item--small:nth-child(4) { grid-column: 11/ 13; grid-row: 4 / 7; }
.vh-bento__item--wide  { grid-column: 1 / 13; grid-row: 7 / 11; }

.vh-bento__img-wrap {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}
.vh-bento__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.vh-bento__item:hover .vh-bento__img-wrap img { transform: scale(1.06); }

.vh-bento__placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, rgba(105,17,7,0.2) 0%, rgba(212,175,55,0.08) 100%),
              var(--warm);
  transition: transform 0.7s ease;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.vh-bento__placeholder--video { cursor: pointer; }
.vh-bento__item:hover .vh-bento__placeholder { transform: scale(1.04); }

.vh-bento__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

/* Caption lớn */
.vh-bento__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  z-index: 2;
}
.vh-bento__cap-tag {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.vh-bento__caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 600;
  color: var(--cream); margin-bottom: 8px;
}
.vh-bento__caption p {
  font-size: 13px; line-height: 1.7;
  color: rgba(232,217,187,0.65); max-width: 400px;
}

/* Caption nhỏ */
.vh-bento__small-caption {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,217,187,0.6); z-index: 2;
  background: rgba(0,0,0,0.4); padding: 4px 10px;
  backdrop-filter: blur(6px);
}

/* Text card */
.vh-bento__text-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  background: var(--red);
  gap: 8px;
}
.vh-bento__text-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300; color: rgba(255,255,255,0.15);
  line-height: 1;
}
.vh-bento__text-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px); font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.3;
}
.vh-bento__text-note {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 8px;
}

/* Wide item — video với text bên */
.vh-bento__item--wide {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.vh-bento__video-wrap {
  position: relative; overflow: hidden; height: 100%;
}
.vh-bento__video-wrap video,
.vh-bento__video-wrap iframe {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.vh-bento__video-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream); background: var(--red);
  padding: 5px 12px;
}
.vh-bento__wide-text {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px;
}
.vh-bento__wide-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px); font-style: italic;
  color: var(--cream); margin-bottom: 16px;
}
.vh-bento__wide-text p {
  font-size: 14px; line-height: 1.9; color: var(--muted);
}
.vh-vplay {
  width: 56px; height: 56px;
  border: 2px solid rgba(212,175,55,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); opacity: 0.7;
}

/* ── ASYMMETRIC LAYOUT ── */
.vh-asym {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4px;
  min-height: 60vh;
  margin-bottom: 4px;
}
.vh-asym__main { overflow: hidden; }
.vh-asym__img {
  width: 100%; height: 100%; min-height: 500px;
  position: relative; overflow: hidden; cursor: pointer;
}
.vh-asym__img:hover .vh-bento__placeholder { transform: scale(1.05); }
.vh-asym__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.vh-asym__img-label {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(232,217,187,0.7); z-index: 2;
}
.vh-asym__side {
  display: flex; flex-direction: column; gap: 4px;
}
.vh-asym__card {
  flex: 1; background: var(--warm);
  padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 2px solid rgba(212,175,55,0.15);
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.vh-asym__card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}
.vh-asym__card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  color: rgba(212,175,55,0.25); margin-bottom: 12px; line-height: 1;
}
.vh-asym__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 26px); font-weight: 600;
  color: var(--cream); margin-bottom: 10px;
}
.vh-asym__card p {
  font-size: 13px; line-height: 1.8; color: var(--muted);
}

/* Video full width */
.vh-video-full { margin-top: 4px; }
.vh-video-full__wrap {
  position:relative; overflow: hidden;
  aspect-ratio: 21 / 10; min-height: 300px;
}
.vh-video-full__wrap video,
.vh-video-full__wrap iframe {
  width: 100%; height: 100%; object-fit: cover;
}
.vh-video-full__caption {
  position: absolute; left: 8vw; top: 50%;
  transform: translateY(-50%); z-index: 3;
}
.vh-video-full__tag {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.vh-video-full__caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.1;
}
.vh-video-full__caption h3 em {
  font-style: normal; font-weight: 700; color: var(--gold-light);
}

/* ── COLLAGE ── */
.vh-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  gap: 4px;
}
.vh-collage__item { overflow: hidden; position: relative; cursor: pointer; }

.vh-collage__item--1 { grid-column: 1 / 3; grid-row: 1 / 5; }
.vh-collage__item--2 { grid-column: 3 / 5; grid-row: 1 / 3; }
.vh-collage__item--3 { grid-column: 5 / 7; grid-row: 1 / 4; }
.vh-collage__item--4 { grid-column: 3 / 5; grid-row: 3 / 5; }
.vh-collage__item--5 { grid-column: 1 / 4; grid-row: 5 / 8; }
.vh-collage__item--6 { grid-column: 4 / 7; grid-row: 4 / 8; }

.vh-collage__label {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(232,217,187,0.7);
  background: rgba(0,0,0,0.5); padding: 4px 10px;
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.3s;
}
.vh-collage__item:hover .vh-collage__label { opacity: 1; }

.vh-collage__text-block {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px;
  background: var(--dark);
}
.vh-collage__text-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px); font-style: italic;
  color: var(--cream); margin-bottom: 12px;
}
.vh-collage__text-block h3 em { font-style: normal; font-weight: 700; color: var(--gold-light); }
.vh-collage__text-block p { font-size: 13px; line-height: 1.8; color: var(--muted); }

.vh-collage__text-block--dark {
  background: rgba(105,17,7,0.2);
  border-left: 2px solid var(--red-light);
}

.vh-collage__quote-block {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; text-align: center;
  background: var(--red);
}
.vh-collage__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; color: rgba(255,255,255,0.15);
  line-height: 0.7; margin-bottom: 8px;
}
.vh-collage__quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.5vw, 18px); font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.5;
}

/* ============================================================
   LIÊN HỆ PAGE — lienhe.html
   ============================================================ */

/* ── HERO ── */
.lh-hero {
  position: relative;
  height: 70vh; min-height: 500px;
  display: flex; align-items: flex-end;
  padding: 0 10vw 80px;
  overflow: hidden;
}
.lh-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(105,17,7,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(212,175,55,0.18) 0%, transparent 55%),
    linear-gradient(150deg, #080604 0%, #180905 50%, #080604 100%);
}
.lh-hero__lines {
  position: absolute; inset: 0;
  display: flex; justify-content: space-evenly; pointer-events: none;
}
.lh-hero__lines span {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.07), transparent);
}
.lh-hero__content { position: relative; z-index: 2; }

.lh-hero__tag {
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.lh-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300; font-style: italic; line-height: 0.9;
  color: var(--cream); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.6s ease forwards;
}
.lh-hero__title em {
  display: block; font-style: normal; font-weight: 700; color: var(--gold-light);
}
.lh-hero__desc {
  font-size: 15px; line-height: 1.9; color: var(--muted); max-width: 480px;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}
.lh-hero__deco {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 22vw, 340px); font-weight: 300;
  color: rgba(212,175,55,0.04); line-height: 1;
  pointer-events: none; z-index: 1;
  opacity: 0; animation: fadeUp 1.2s 1s ease forwards;
}

/* ── MAIN 2-COL LAYOUT ── */
.lh-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  padding: 100px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 6vw; padding-right: 6vw;
  align-items: start;
}

/* ── INFO COL ── */
.lh-info { padding-right: 60px; }

.lh-info__header {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 56px;
}
.lh-info__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; color: rgba(212,175,55,0.1);
  line-height: 1; flex-shrink: 0;
}
.lh-info__tag {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.lh-info__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.05;
}
.lh-info__heading em { font-style: normal; font-weight: 700; color: var(--gold-light); }

/* Info items */
.lh-info__item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.lh-info__item:first-of-type { border-top: 1px solid rgba(212,175,55,0.08); }

.lh-info__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  font-size: 18px;
}
.lh-info__icon--fb {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--gold);
}
.lh-info__icon--ig {
  font-size: 14px; color: var(--gold);
}

.lh-info__label {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.lh-info__value {
  font-size: 14px; color: var(--cream); line-height: 1.6;
}
.lh-info__value--link {
  text-decoration: none; color: var(--cream);
  transition: color 0.3s;
}
.lh-info__value--link:hover { color: var(--gold-light); }

.lh-info__link {
  display: inline-block; margin-top: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: letter-spacing 0.3s;
}
.lh-info__link:hover { letter-spacing: 0.3em; }

.lh-info__note {
  font-size: 11px; color: var(--muted); margin-top: 4px; font-style: italic;
}

/* Schedule */
.lh-info__schedule {
  margin-top: 40px; padding: 28px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.1);
}
.lh-info__schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.06);
  font-size: 13px; color: var(--muted);
}
.lh-info__schedule-row:last-child { border-bottom: none; }
.lh-info__schedule-val { color: var(--cream); font-weight: 500; }
.lh-info__schedule-val--off { color: rgba(212,175,55,0.4); }

/* ── FORM COL ── */
.lh-form-wrap {
  background: var(--dark);
  padding: 56px 52px;
  border: 1px solid rgba(212,175,55,0.08);
  position: relative;
}
.lh-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--red), var(--gold), transparent);
}

.lh-form__header { margin-bottom: 40px; }
.lh-form__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.1;
}
.lh-form__heading em { font-style: normal; font-weight: 700; color: var(--gold-light); }

/* Form layout */
.lh-form { display: flex; flex-direction: column; gap: 24px; transition: opacity 0.4s, transform 0.4s; }
.lh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lh-form__group { display: flex; flex-direction: column; gap: 8px; position: relative; }

.lh-form__label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(212,175,55,0.7);
}
.lh-form__required { color: var(--red-light); }

.lh-form__input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.lh-form__input::placeholder { color: rgba(232,217,187,0.2); }
.lh-form__input:focus {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.03);
}
.lh-form__input--error { border-color: rgba(200,50,50,0.6) !important; }

.lh-form__textarea {
  resize: vertical; min-height: 160px; line-height: 1.7;
}

.lh-form__counter {
  font-size: 11px; color: var(--muted);
  text-align: right; margin-top: -4px;
}

/* Error message */
.lh-form__error {
  font-size: 11px; color: rgba(220,80,80,0.9);
  display: none;
}
.lh-form__error--show { display: block; }

/* Chips loại tin nhắn */
.lh-form__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.lh-chip {
  cursor: pointer;
}
.lh-chip input { display: none; }
.lh-chip span {
  display: block; padding: 9px 18px;
  border: 1px solid rgba(212,175,55,0.2);
  font-size: 12px; color: var(--muted);
  transition: all 0.25s;
  user-select: none;
}
.lh-chip input:checked + span {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  color: var(--gold);
}
.lh-chip:hover span { border-color: rgba(212,175,55,0.4); color: var(--cream); }

/* Submit button */
.lh-form__btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  margin-top: 8px;
  position: relative; overflow: hidden;
}
.lh-form__btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}
.lh-form__btn:hover::before { transform: scaleX(1); }
.lh-form__btn:hover { color: var(--black); }
.lh-form__btn-text, .lh-form__btn-icon { position: relative; z-index: 1; }
.lh-form__btn-icon { font-size: 18px; transition: transform 0.3s; }
.lh-form__btn:hover .lh-form__btn-icon { transform: translateX(6px); }

/* Success state */
.lh-form__success {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center; padding: 60px 40px;
  gap: 16px;
}
.lh-form__success--show { display: flex; animation: fadeUp 0.6s ease forwards; }
.lh-form__success-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold);
  margin-bottom: 8px;
}
.lh-form__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-style: italic; color: var(--cream);
}
.lh-form__success p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── MAP ── */
.lh-map {
  padding: 100px 6vw;
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,0.08);
}
.lh-map__header { margin-bottom: 40px; }
.lh-map__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.1;
}
.lh-map__heading em { font-style: normal; font-weight: 700; color: var(--gold-light); }

.lh-map__wrap {
  width: 100%; height: 480px;
  position: relative;
  border: 1px solid rgba(212,175,55,0.1);
  overflow: hidden;
}
.lh-map__wrap iframe { filter: grayscale(60%) sepia(20%); }
.lh-map__pin {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: rgba(10,8,6,0.88);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 14px 20px;
  backdrop-filter: blur(12px);
}
.lh-map__pin-label strong {
  display: block; font-size: 12px; color: var(--gold); margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.lh-map__pin-label span { font-size: 12px; color: var(--muted); }

/* ── SOCIAL CTA ── */
.lh-social {
  padding: 100px 6vw;
  text-align: center;
}
.lh-social__tag {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.lh-social__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.05;
  margin-bottom: 56px;
}
.lh-social__heading em { font-style: normal; font-weight: 700; color: var(--gold-light); }

.lh-social__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  max-width: 900px; margin: 0 auto;
}
.lh-social__card {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 28px;
  background: var(--dark);
  border: 1px solid rgba(212,175,55,0.08);
  text-decoration: none;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.lh-social__card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.lh-social__card--fb::before  { background: #4267B2; }
.lh-social__card--ig::before  { background: linear-gradient(to right, #f09433, #e6683c, #dc2743); }
.lh-social__card--email::before { background: var(--gold); }

.lh-social__card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lh-social__card:hover::before { transform: scaleX(1); }

.lh-social__card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--gold);
}
.lh-social__card-info { flex: 1; text-align: left; }
.lh-social__card-info strong {
  display: block; font-size: 14px; color: var(--cream); margin-bottom: 4px;
}
.lh-social__card-info span { font-size: 12px; color: var(--muted); }
.lh-social__card-arrow {
  font-size: 20px; color: rgba(212,175,55,0.3);
  transition: transform 0.3s, color 0.3s;
}
.lh-social__card:hover .lh-social__card-arrow {
  transform: translateX(4px); color: var(--gold);
}


/* ============================================
   HIGHLIGHTS / CARD GRID
   ============================================ */
#highlights {
  padding: 80px 5vw 140px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 5vw 60px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}

.section-heading em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ── Cards ── */
.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
  background-size: cover;      /* Giúp ảnh phủ kín khung card nhưng vẫn giữ đúng tỷ lệ */
  background-position: center; /* Đưa tâm điểm của ảnh vào giữa khung, không bị lệch góc */
  background-repeat: no-repeat;
}

.card:hover .card-bg {
  transform: scale(1.06); }
.card-bg-1 { background-image: url(./img/phao.JPG);}
.card-bg-2 { background-image: url(./img/BANHCHUNG.jpg);}
.card-bg-3 { background-image: url(./img/maivang.jpg); }
.card-bg-4 { background-image: url(./img/tien.jpg); }
.card-bg-5 { background-image: url(./img/lanrong.jpg); }

.card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.12;
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.card:hover .card-icon {
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.card:hover .card-content { transform: translateY(0); }

.card-tag {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(232, 217, 187, 0.6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.card:hover .card-desc {
  max-height: 80px;
  opacity: 1;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.card-arrow::after { content: '→'; }
.card:hover .card-arrow { opacity: 1; }

/* ============================================
   QUOTE SECTION
   ============================================ */
#quote {
  padding: 120px 10vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#quote::before {
  content: '春';
  font-family: 'Cormorant Garamond', serif;
  font-size: 400px;
  color: rgba(212, 175, 55, 0.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--red);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 32px;
}

.quote-text em {
  color: var(--gold-light);
  font-style: normal;
}

.quote-author {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-author::before { content: '— '; }


/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 80px 10vw 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  width: 100%;
}
.contact { width: 100%;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
  display: inline-block;
}

.footer-links a:hover { color: var(--cream); }
.footer-links a:hover::before { width: 16px; }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(232, 217, 187, 0.3);
  letter-spacing: 0.1em;
}

.footer-heart { color: var(--red); }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  nav { padding: 24px 32px; }
  .nav-links { gap: 24px; }
  #about { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 400px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero-title { font-size: clamp(48px, 12vw, 80px); }
  .card-grid { grid-template-columns: 1fr; }
  .card:first-child { grid-row: span 1; }
  footer { grid-template-columns: 1fr; gap: 40px; }
  .hero-social { display: none; }
  .year-badge { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .at-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .at-intro__number {
    font-size: 80px;
  }
  .food-card__name {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .at-hero {
    padding: 0 6vw 60px;
  }
  .at-menu {
    padding: 40px 4vw 60px;
  }
  .at-row--2,
  .at-row--3 {
    grid-template-columns: 1fr;
  }
  .food-card__info {
    padding: 18px 20px 22px;
  }
  .food-card__desc {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .at-hero__title {
    font-size: 42px;
  }
  .food-card__name {
    font-size: 20px;
  }
  .food-card__badge {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* ── RESPONSIVE van hoa ── */
@media (max-width: 1024px) {
  .vh-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 100px; }
  .vh-bento__item--large { grid-column: 1 / 3; grid-row: 1 / 5; }
  .vh-bento__item--text  { grid-column: 1 / 2; grid-row: 5 / 7; }
  .vh-bento__item--small:nth-child(3) { grid-column: 2 / 3; grid-row: 5 / 7; }
  .vh-bento__item--small:nth-child(4) { display: none; }
  .vh-bento__item--wide { grid-column: 1 / 3; grid-row: 7 / 10; grid-template-columns: 1fr; }
  .vh-bento__wide-text { padding: 24px; }

  .vh-asym { grid-template-columns: 1fr; }
  .vh-asym__img { min-height: 300px; }
  .vh-video-full__wrap { aspect-ratio: 16/6; }

  .vh-collage { grid-template-columns: 1fr 1fr 1fr; }
  .vh-collage__item--1 { grid-column: 1 / 2; grid-row: 1 / 4; }
  .vh-collage__item--2 { grid-column: 2 / 4; grid-row: 1 / 3; }
  .vh-collage__item--3 { grid-column: 2 / 3; grid-row: 3 / 5; }
  .vh-collage__item--4 { grid-column: 3 / 4; grid-row: 3 / 5; }
  .vh-collage__item--5 { grid-column: 1 / 3; grid-row: 4 / 6; }
  .vh-collage__item--6 { grid-column: 3 / 4; grid-row: 5 / 7; }
}

@media (max-width: 768px) {
  .vh-hero { padding: 0 6vw 60px; }
  .vh-hero__stats { position: relative; right: auto; bottom: auto; flex-direction: row; margin-top: 32px; }
  .vh-statement { grid-template-columns: 1fr; gap: 16px; }
  .vh-section { padding: 60px 5vw; }

  .vh-bento { grid-template-columns: 1fr; grid-auto-rows: 120px; }
  .vh-bento__item { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .vh-bento__item--wide { grid-template-columns: 1fr; }
  .vh-bento__wide-text { min-height: 120px; }

  .vh-asym { grid-template-columns: 1fr; }
  .vh-video-full__wrap { aspect-ratio: 16/9; }

  .vh-collage { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
  .vh-collage__item { grid-column: span 1 !important; grid-row: span 2 !important; }
}
/* ============================================
  GAME
   ============================================ */
#lixi-game { padding: 80px 5vw; text-align: center; background: #1a0a0a; }
.canvas-container { 
    position: relative; 
    max-width: 800px; 
    margin: 0 auto; 
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: none; /* Dùng cursor custom của bạn */
}
canvas { background: #260a0a; display: block; width: 100%; height: 500px; }
#game-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
}
.score-board { 
    font-family: 'Cormorant Garamond', serif; 
    color: var(--gold); 
    font-size: 24px; margin-bottom: 20px; 
}