:root {
  --gold: #f5c542;
  --amber: #f59e0b;
  --ink: #0d1017;
  --ink-soft: #525a67;
  --line: #e6e9f0;
  --surface: #ffffff;
  --surface-2: #eef2f9;
  --sky: #0ea5e9;
  --info: #4f46e5;
  --violet: #7c3aed;
  --shadow-soft: 0 1px 2px rgba(13, 16, 23, 0.04), 0 12px 34px rgba(13, 16, 23, 0.08);
  --shadow-lift: 0 18px 44px rgba(13, 16, 23, 0.16);
  --red: #c8102e;
  --red-deep: #9e0b22;
  --r: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  background-color: var(--surface-2);
  background-image:
    radial-gradient(1100px 560px at 102% -8%, rgba(14, 165, 233, 0.22), transparent 60%),
    radial-gradient(1000px 520px at -8% 0%, rgba(245, 197, 66, 0.22), transparent 58%),
    radial-gradient(900px 520px at 50% 116%, rgba(124, 58, 237, 0.14), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Space Grotesk", "Manrope", sans-serif; letter-spacing: -0.02em; }
a { color: inherit; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-badge {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--ink); font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px;
  box-shadow: 0 8px 20px rgba(245, 197, 66, 0.45);
}
.brand-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px; }
.brand.small .brand-badge { width: 32px; height: 32px; font-size: 17px; }
.brand.small .brand-name { font-size: 19px; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 2px; background: rgba(13,16,23,0.05); border-radius: 999px; padding: 3px; }
.lang button {
  border: 0; background: transparent; color: var(--ink-soft); font-weight: 700; font-size: 13px;
  padding: 6px 11px; border-radius: 999px; cursor: pointer; font-family: inherit;
}
.lang button.active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(13,16,23,0.1); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-family: inherit; text-decoration: none; cursor: pointer;
  border: 0; border-radius: 14px; padding: 14px 22px; font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 12px; }
.btn-block { width: 100%; padding: 16px; font-size: 17px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  box-shadow: 0 10px 26px rgba(79, 70, 229, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: rgba(255,255,255,0.7); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-inner { max-width: 820px; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--info);
  background: rgba(79, 70, 229, 0.1); padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 6vw, 60px); line-height: 1.04; margin: 0 0 18px; }
.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--ink-soft); margin: 0 0 28px; max-width: 680px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: rgba(255,255,255,0.8); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 15px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-soft);
}

/* Sections */
.section { padding: 60px 0; }
.section-alt { }
.section-title { font-size: clamp(26px, 4vw, 38px); text-align: center; margin: 0 0 8px; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--ink-soft); margin: 0 auto 34px; max-width: 620px; }
.section-sub.left { text-align: left; margin-left: 0; }

/* Cards / grids */
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step h3, .cat h3 { margin: 12px 0 6px; font-size: 19px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.step:hover, .cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step-num {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px; color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--info));
  box-shadow: 0 8px 20px rgba(79,70,229,0.28);
}
.cat { display: flex; align-items: center; gap: 14px; }
.cat h3 { margin: 0; }
.cat-ico { font-size: 30px; line-height: 1; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.why-list li {
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.7);
  border-left: 4px solid var(--gold); border-radius: 16px; padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}
.why-list strong { display: block; font-size: 17px; margin-bottom: 3px; }
.why-list span { color: var(--ink-soft); font-size: 15px; }

/* Form */
.section-cta { padding-bottom: 80px; }
.quote-card { max-width: 600px; margin: 0 auto; padding: 32px; }
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: 15px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px;
  font-size: 16px; font-family: inherit; background: #fff; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(14,165,233,0.18);
}
.field textarea { resize: vertical; }
.form-note { margin: 14px 0 0; text-align: center; font-weight: 600; }
.form-note.ok { color: var(--info); }
.form-note.err { color: #e11d48; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: rgba(255,255,255,0.6); padding: 30px 0; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-tag { color: var(--ink-soft); margin: 8px 0 0; }
.footer-meta { text-align: right; font-size: 14px; color: var(--ink-soft); }
.footer-meta p { margin: 2px 0; }
.footer-meta a { color: var(--info); text-decoration: none; }
.muted { opacity: 0.7; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { text-align: left; }
}
@media (max-width: 520px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .btn:hover, .step:hover, .cat:hover { transform: none; }
  .ticker-track { animation: none !important; }
}

/* ── Китайские акценты (вермиллион + золото) ── */

/* Бегущая строка про выставки */
.ticker {
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  color: #fff; overflow: hidden; white-space: nowrap;
  border-bottom: 2px solid var(--gold);
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 9px 0; will-change: transform;
  animation: ticker 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { font-size: 14px; font-weight: 600; }
.ticker-item b {
  background: var(--gold); color: var(--ink); font-weight: 800;
  padding: 2px 8px; border-radius: 6px; font-size: 12px; letter-spacing: 0.04em;
}
.ticker-sep { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Гуанчжоу-тег в hero */
.gz-tag {
  display: inline-block; margin: 0 0 18px; font-size: 13px; font-weight: 600;
  color: var(--red-deep); background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2); padding: 6px 13px; border-radius: 999px;
}

/* Печать-чоп с иероглифом 信 (доверие) */
.seal {
  display: grid; place-items: center; width: 64px; height: 64px; flex: 0 0 64px;
  background: var(--red); color: #fff; border-radius: 14px;
  font-family: "Noto Serif SC", "Songti SC", serif; font-size: 34px; font-weight: 700;
  box-shadow: 0 10px 26px rgba(200, 16, 46, 0.34);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

/* Секция «на земле в Китае» */
.china-band .china-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.gallery { gap: 16px; }
.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 14px; color: #fff;
  box-shadow: var(--shadow-soft); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.shot-1 { background: linear-gradient(140deg, var(--red), var(--red-deep)); }
.shot-2 { background: linear-gradient(140deg, #b8891c, var(--amber)); }
.shot-3 { background: linear-gradient(140deg, var(--sky), var(--info)); }
.shot-4 { background: linear-gradient(140deg, var(--violet), #5b21b6); }
.shot-cn {
  position: absolute; top: 10px; right: 14px; font-size: 30px; font-weight: 700;
  font-family: "Noto Serif SC", "Songti SC", serif; opacity: 0.5;
}
.shot-cap { font-weight: 700; font-size: 15px; position: relative; z-index: 1; }

/* Карточки выставок */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.fair { border-top: 3px solid var(--red); }
.fair-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.fair-cn {
  font-family: "Noto Serif SC", "Songti SC", serif; font-size: 22px; font-weight: 700;
  color: var(--red);
}
.fair h3 { margin: 0 0 4px; font-size: 20px; }
.fair-meta { color: var(--ink-soft); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.fair p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.badge {
  font-size: 12px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; background: rgba(13, 16, 23, 0.06); color: var(--ink-soft);
}
.badge-up { background: var(--red); color: #fff; }

@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; } }
