/* ═══════════════════════════════════════════════════════
   蜀渔 ShuYu Fish Hotpot – Main Stylesheet
   Theme: Deep Black × Crimson × Gold
═══════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────── */
:root {
  --c-red:        #c0272d;
  --c-red-dark:   #8b1a1e;
  --c-red-light:  #e53e3e;
  --c-gold:       #d4a017;
  --c-gold-light: #f0c040;
  --c-gold-dim:   #a07810;
  --c-bg:         #080808;
  --c-bg2:        #111111;
  --c-bg3:        #1a1a1a;
  --c-card:       #161616;
  --c-border:     rgba(255,255,255,.07);
  --c-text:       #f0ece4;
  --c-text-muted: #a09a90;
  --c-text-dim:   #6b6560;
  --c-white:      #ffffff;

  --font-display: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --font-zh:      'Noto Serif SC', 'Playfair Display', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.6);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.8);
  --transition:   .35s cubic-bezier(.4,0,.2,1);

  --nav-h: 72px;
}

/* ─── RESET & BASE ───────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--c-gold-light); }

ul[role="list"] { list-style: none; }

::selection {
  background: var(--c-red);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

em { font-style: italic; color: var(--c-gold-light); }

/* ─── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-red-light); }

/* ─── UTILITIES ──────────────────────────────────── */
.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: .3rem 1rem;
  border: 1px solid var(--c-gold-dim);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--c-text);
  margin-bottom: .8rem;
}

.section-desc {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--c-text-muted);
  font-size: 1.05rem;
}

/* ─── REVEAL ANIMATION ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.delay-1 { transition-delay: .15s; }
.reveal.delay-2 { transition-delay: .30s; }
.reveal.delay-3 { transition-delay: .45s; }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(192,39,45,.35);
  font-size: .95rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(192,39,45,.55);
  background: linear-gradient(135deg, var(--c-red-light) 0%, var(--c-red) 100%);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--c-text);
  font-weight: 500;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  font-size: .95rem;
}

.btn-outline:hover {
  border-color: var(--c-gold-light);
  background: rgba(212,160,23,.08);
  color: var(--c-gold-light);
  transform: translateY(-2px);
}

/* ─── NAVIGATION ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 24px rgba(0,0,0,.5);
}

.nav-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(.85rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold-dim);
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-zh {
  font-family: var(--font-zh);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-gold-light);
}

.logo-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.5rem);
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--transition);
  padding: .4rem .2rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: right;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-reserve {
  background: var(--c-red) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 6px !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}

.btn-reserve:hover {
  background: var(--c-red-light) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-reserve::after { display: none !important; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 2px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--c-text-muted);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .55rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  letter-spacing: .04em;
  touch-action: manipulation;
  min-width: 32px;
  text-align: center;
}

.lang-btn:hover { color: var(--c-text); }

.lang-btn.active {
  background: var(--c-red);
  color: #fff;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 0;
  flex-shrink: 0;
  touch-action: manipulation;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.35) 0%,
    rgba(8,8,8,.55) 50%,
    rgba(8,8,8,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-inline: 1rem;
  max-width: 820px;
}

.hero-deco {
  font-family: var(--font-zh);
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--c-gold);
  opacity: .85;
  animation: fadeDown .8s .2s both;
}

.hero-badge {
  display: inline-block;
  background: rgba(192,39,45,.2);
  border: 1px solid rgba(192,39,45,.5);
  color: #f8b4b4;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  animation: fadeDown .8s .35s both;
}

.hero-title {
  animation: fadeDown .9s .45s both;
}

.hero-zh {
  display: block;
  font-family: var(--font-zh);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
  text-shadow: 0 4px 32px rgba(0,0,0,.6);
  background: linear-gradient(135deg, #fff 40%, var(--c-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-en {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--c-gold-light);
  letter-spacing: .08em;
  margin-top: .3rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(240,236,228,.8);
  line-height: 1.6;
  max-width: 54ch;
  animation: fadeUp .9s .55s both;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--c-text-muted);
  animation: fadeUp .9s .65s both;
}

.stars { color: var(--c-gold-light); letter-spacing: .05em; font-size: 1rem; }
.hero-sep { color: var(--c-text-dim); }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .9s .75s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  font-size: .9rem;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:none; }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:none; }
}

/* ─── RIBBON ─────────────────────────────────────── */
.ribbon {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}

.ribbon-item i {
  color: var(--c-gold);
  font-size: 1.1rem;
}

.ribbon-item > div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.ribbon-item strong { color: var(--c-text); font-weight: 600; }
.ribbon-item span   { color: var(--c-text-muted); font-size: .8rem; }
.ribbon-item a      { color: var(--c-text); }

.ribbon-sep {
  color: var(--c-text-dim);
  font-size: 1.4rem;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about-section { background: var(--c-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-float {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--c-bg);
}

.about-img-float img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  box-shadow: 0 4px 16px rgba(192,39,45,.6);
}

.badge-num {
  font-family: var(--font-zh);
  font-size: 2rem;
  line-height: 1;
}

.about-text { padding-inline-start: 1rem; }

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.4rem;
}

.about-text p {
  color: var(--c-text-muted);
  margin-bottom: 1.2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0 2.2rem;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1rem;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.feat-item:hover { border-color: var(--c-red); }

.feat-item i {
  color: var(--c-gold);
  font-size: 1.2rem;
  margin-top: .15rem;
}

.feat-item > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.feat-item strong {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text);
}

.feat-item small {
  font-size: .75rem;
  color: var(--c-text-muted);
}

/* ─── SPECIALTIES ────────────────────────────────── */
.specialties-section { background: var(--c-bg2); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.spec-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.spec-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192,39,45,.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(192,39,45,.15);
}

.spec-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.spec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.spec-card:hover .spec-img img { transform: scale(1.08); }

.spec-tag-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--c-red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 999px;
}

.new-badge { background: var(--c-gold-dim) !important; }

.spec-body { padding: 1.4rem; }

.spec-body h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--c-text);
}

.spec-body p {
  font-size: .85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: .9rem;
}

.spec-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.spec-tags span {
  font-size: .7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: .2rem .6rem;
  color: var(--c-text-muted);
}

.spec-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ─── EXPERIENCE BANNER ──────────────────────────── */
.experience-banner {
  background:
    linear-gradient(rgba(8,8,8,.7), rgba(8,8,8,.7)),
    url('../images/shuyu-restaurant-bucharest.webp') center/cover no-repeat;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  text-align: center;
}

.exp-item { display: flex; flex-direction: column; gap: .4rem; }

.exp-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
}

.exp-label {
  font-size: .85rem;
  color: var(--c-text-muted);
  letter-spacing: .05em;
}

/* ─── GALLERY ─────────────────────────────────────── */
.gallery-section { background: var(--c-bg); }

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item.tall { row-span: 2; }

.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}

.gal-item:hover img { transform: scale(1.06); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-size: 1.6rem;
}

.gal-item:hover .gal-overlay { opacity: 1; }

/* ─── LIGHTBOX ────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s ease;
}

.lightbox[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-img-wrapper img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--c-red); }

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ─── VIDEO SECTION ──────────────────────────────── */
.video-section { background: var(--c-bg2); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  background: #000;
  aspect-ratio: 16/9;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── TIKTOK ──────────────────────────────────────── */
.tiktok-section { background: var(--c-bg); }

.tiktok-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  padding: .6rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
}

.tiktok-follow-btn:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

.tiktok-follow-btn i { font-size: 1.1rem; }

.tiktok-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tt-card {
  display: flex;
  justify-content: center;
}

/* ─── ORDER ───────────────────────────────────────── */
.order-section { background: var(--c-bg2); }

.order-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.order-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.order-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-red);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  color: var(--c-text);
}

.order-icon {
  width: 56px;
  height: 56px;
  background: rgba(192,39,45,.12);
  border: 1px solid rgba(192,39,45,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red-light);
  font-size: 1.4rem;
  transition: background var(--transition);
}

.order-card:hover .order-icon {
  background: rgba(192,39,45,.25);
}

.order-card h3 { font-size: 1.2rem; color: var(--c-text); }
.order-card p  { font-size: .87rem; color: var(--c-text-muted); flex: 1; }

.order-cta-link {
  color: var(--c-gold);
  font-weight: 600;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition);
}

.order-card:hover .order-cta-link { gap: .7rem; }

/* ─── REVIEWS ─────────────────────────────────────── */
.reviews-section { background: var(--c-bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition);
}

.review-card:hover { border-color: rgba(212,160,23,.4); }

.review-stars {
  color: var(--c-gold-light);
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

.review-card p {
  color: var(--c-text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author { font-weight: 600; font-size: .9rem; color: var(--c-text); }

.review-source {
  font-size: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--c-border);
  padding: .2rem .6rem;
  border-radius: 999px;
  color: var(--c-text-muted);
}

.reviews-platforms {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--c-text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.platform-badge i { font-size: 1.2rem; color: var(--c-gold); }
.platform-badge:hover { border-color: var(--c-gold); color: var(--c-text); }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section { background: var(--c-bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-gold);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.hours-table td {
  padding: .35rem 0;
  border-bottom: 1px solid var(--c-border);
}

.hours-table td:first-child {
  color: var(--c-text-muted);
  width: 50%;
}

.hours-table td:last-child {
  color: var(--c-text);
  font-weight: 500;
}

address { font-style: normal; color: var(--c-text-muted); line-height: 1.7; }

.contact-phone-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-text);
  transition: color var(--transition);
}

.contact-phone-link:hover { color: var(--c-gold-light); }

.social-links {
  display: flex;
  gap: .75rem;
}

.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.soc-btn:hover {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}

.contact-map iframe { display: block; }

.map-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.2rem;
  background: var(--c-card);
  color: var(--c-gold);
  font-weight: 600;
  font-size: .88rem;
  justify-content: center;
  transition: background var(--transition);
}

.map-link:hover { background: var(--c-bg3); color: var(--c-gold-light); }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: #050505;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

.footer-waves { line-height: 0; overflow: hidden; }
.footer-waves svg { display: block; width: 100%; }

.footer-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 3rem clamp(1rem, 5vw, 3rem) 2rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold-dim);
}

.footer-name {
  font-family: var(--font-zh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-gold-light);
}

.footer-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: .55rem;
  font-size: .85rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-col ul li i {
  color: var(--c-gold-dim);
  font-size: .9rem;
  width: 16px;
}

.footer-col ul li a:hover { color: var(--c-gold-light); }

.footer-social {
  display: flex !important;
  gap: .6rem;
  margin-top: .4rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--c-red);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 1.4rem clamp(1rem, 5vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--c-text-dim);
  max-width: 1240px;
  margin-inline: auto;
}

/* ─── BACK TO TOP ─────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(192,39,45,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top:not([hidden]) {
  opacity: 1;
  transform: none;
}

.back-to-top:hover {
  background: var(--c-red-light);
  transform: translateY(-3px);
}

/* ─── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 380px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  z-index: 800;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  font-size: .83rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .spec-grid      { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { columns: 3; }
}

@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; }
  .about-images   { max-width: 560px; }
  .about-img-float { display: none; }
  .about-badge-float { display: none; }
  .contact-grid   { grid-template-columns: 1fr; }
  .exp-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-inner   { grid-template-columns: 1fr; }
  .footer-cols    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  /* ── Nav container: logo | spacer(auto via lang-switcher) | lang | burger ── */
  .nav-container { gap: .6rem; }

  .nav-logo img  { width: 36px; height: 36px; }
  .logo-zh       { font-size: 1.05rem; }
  .logo-sub      { display: none; }

  /* Nav links: full-screen slide-down panel */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    bottom: 0;
    background: rgba(6,6,6,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.2rem 1.5rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    border-left: 1px solid var(--c-border);
    overflow-y: auto;
    z-index: 999;
    margin-left: 0;
  }

  .nav-links.open { transform: none; }

  .nav-links li { border-bottom: 1px solid var(--c-border); }
  .nav-links li:last-child { border-bottom: none; margin-top: 1rem; }

  .nav-links a {
    display: block;
    padding: 1rem .25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text-muted);
  }

  .nav-links a:hover {
    color: var(--c-gold-light);
    padding-left: .5rem;
    transition: color .2s, padding-left .2s;
  }

  .btn-reserve {
    display: block;
    text-align: center;
    padding: .9rem 1.5rem !important;
    font-size: .95rem !important;
    border-radius: 10px !important;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 0;
    order: 2;
  }

  .lang-btn {
    font-size: .7rem;
    padding: .28rem .45rem;
    min-width: 28px;
  }

  .nav-hamburger {
    display: flex;
    margin-left: .4rem;
    order: 3;
  }

  /* ── Sections ── */
  .spec-grid    { grid-template-columns: 1fr; }
  .order-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .video-grid   { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }

  .ribbon {
    gap: .9rem;
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
  }
  .ribbon-sep { display: none; }
  .ribbon-item { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 100%; }

  .footer-cols    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: .4rem; text-align: center; }
  .hero-cta       { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { width: 100%; max-width: 300px; justify-content: center; }

  .hero-zh { font-size: clamp(3.5rem, 18vw, 6rem); }
  .hero-en { font-size: 1.05rem; }
  .hero-rating { flex-wrap: wrap; justify-content: center; gap: .4rem; }
  .hero-sep { display: none; }

  .section-header h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  .tiktok-grid { flex-direction: column; align-items: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 2; column-gap: .6rem; }
  .exp-grid        { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-inner    { gap: 2rem; }
  .about-img-main img { height: 260px; }
  .cookie-banner   { left: .75rem; right: .75rem; max-width: 100%; }
  .back-to-top     { bottom: 1rem; right: 1rem; }
  .spec-img        { height: 180px; }
  .hero-sub        { font-size: .92rem; }
  .btn-primary, .btn-outline { padding: .75rem 1.5rem; font-size: .88rem; }
  .tiktok-grid .tt-card { max-width: 325px; width: 100%; }
  blockquote.tiktok-embed { min-width: unset !important; max-width: 100% !important; }
}

/* ─── PRINT ───────────────────────────────────────── */
@media print {
  #navbar, .hero-video-wrapper, .hero-scroll-hint,
  .tiktok-section, #video-section, .back-to-top,
  .cookie-banner { display: none !important; }
  body { background: #fff; color: #000; }
}
