:root {
  --bg-0: #0f0d0b;
  --bg-1: #181510;
  --panel: rgba(28, 24, 19, 0.86);
  --line: rgba(236, 220, 193, 0.2);
  --text: #decfb5;
  --text-soft: #baa98d;
  --text-strong: #f3ead9;
  --gold: #c8a978;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1220px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  line-height: 1.75;
  background:
    radial-gradient(circle at 80% -10%, rgba(200, 169, 120, 0.2), transparent 36%),
    radial-gradient(circle at -20% 10%, rgba(200, 169, 120, 0.14), transparent 32%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(var(--max), calc(100vw - 56px));
  margin: 0 auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(15, 13, 11, 0.74);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.1;
  color: var(--text-strong);
}

.menu {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu a {
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.menu a:hover {
  color: var(--text-strong);
}

.hero {
  padding: 32px 0 20px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-copy {
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  color: var(--text-strong);
  line-height: 1.18;
}

h1 {
  font-size: clamp(36px, 6vw, 66px);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.lead {
  color: var(--text);
  font-size: clamp(16px, 2vw, 20px);
}

.section {
  padding: 52px 0;
}

.section-head {
  margin-bottom: 20px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(22, 19, 16, 0.88);
  padding: 24px;
}

.stat-value {
  font-family: "Bodoni Moda", "Noto Serif SC", serif;
  font-size: clamp(34px, 4.8vw, 54px);
  color: var(--text-strong);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  text-align: left;
  font-size: 15px;
}

.table th {
  color: var(--text-soft);
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery figure {
  min-height: 220px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  border: 1px solid rgba(200, 169, 120, 0.42);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.notice {
  color: var(--text-soft);
  font-size: 14px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 11px 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ccb081 0%, #9e7e4f 100%);
  color: #17120d;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(182, 139, 78, 0.34), 0 0 0 0 rgba(182, 139, 78, 0.36);
  animation: ctaPulseSoft 2.6s ease-in-out infinite;
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 12px 30px rgba(182, 139, 78, 0.44), 0 0 0 6px rgba(182, 139, 78, 0.1);
}

@keyframes ctaPulseSoft {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(182, 139, 78, 0.34), 0 0 0 0 rgba(182, 139, 78, 0.36);
  }
  50% {
    box-shadow: 0 10px 28px rgba(182, 139, 78, 0.42), 0 0 0 5px rgba(182, 139, 78, 0.11);
  }
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--text-soft);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; }
}

@media (max-width: 820px) {
  .container { width: min(var(--max), calc(100vw - 30px)); }
  .menu { display: none; }
  .grid-3,
  .grid-2,
  .gallery { grid-template-columns: 1fr; }
  .hero-copy,
  .card { padding: 20px; }
}
