*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Segoe UI', 'Microsoft YaHei', sans-serif;
  color: #142033;
  background: #f4f7fb;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
:root {
  --navy: #0d1f3c;
  --gold: #f0b429;
  --gold-dk: #c8901a;
  --blue: #2d7dd2;
  --muted: #5b6b82;
  --card: #fff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(13, 31, 60, .10);
}
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(13, 31, 60, .94);
  backdrop-filter: blur(12px);
  color: #fff;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 58px; padding: 8px 0;
}
.brand { font-weight: 800; letter-spacing: .04em; font-size: 1rem; text-decoration: none; }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav a.jump { color: #cfe0f4; text-decoration: none; font-size: .86rem; padding: 6px 8px; }
.lang {
  border: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff;
  border-radius: 999px; padding: 6px 12px; font-size: .8rem; cursor: pointer;
}
.hero {
  background:
    linear-gradient(135deg, #0d1f3c 0%, #1a3560 58%, #0d2a52 100%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(45,125,210,.06) 40px);
  color: #fff; padding: 56px 0 48px;
}
.hero-badge {
  display: inline-block; color: var(--gold); border: 1px solid rgba(240,180,41,.4);
  background: rgba(240,180,41,.12); border-radius: 999px; padding: 4px 12px;
  font-size: .78rem; font-weight: 700; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(1.7rem, 5vw, 2.7rem); line-height: 1.2; margin-bottom: 12px; }
.hero p { color: #b7cce2; max-width: 640px; font-size: clamp(.95rem, 2.4vw, 1.08rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 18px; border-radius: 10px;
  font-weight: 700; text-decoration: none; font-size: .95rem;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-navy { background: var(--navy); color: #fff; }
section { padding: 48px 0; }
h2 { font-size: clamp(1.25rem, 3vw, 1.7rem); margin-bottom: 8px; }
.lead { color: var(--muted); margin-bottom: 22px; max-width: 720px; }
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid.cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
}
.card img { width: 100%; height: 180px; object-fit: cover; background: #d9e4f2; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tag { font-size: .75rem; font-weight: 700; color: var(--blue); letter-spacing: .04em; }
.card h3 { font-size: 1.12rem; }
.card p { color: var(--muted); font-size: .92rem; flex: 1; }
.note {
  background: #fff7e6; color: #6a4b00; border: 1px solid #f0d48a;
  border-radius: 12px; padding: 12px 14px; font-size: .9rem; margin-bottom: 18px;
}
.shots { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .shots.shots-2 { grid-template-columns: 1fr 1fr; } }
.shots figure {
  background: #fff; border-radius: 14px; overflow: visible; box-shadow: var(--shadow);
}
.shots img { width: 100%; height: auto; display: block; background: #fff; }
.shots figcaption { padding: 10px 12px 12px; color: var(--muted); font-size: .85rem; }
.facts { display: grid; gap: 12px; }
@media (min-width: 700px) { .facts { grid-template-columns: 1fr 1fr; } }
.fact { background: #fff; border-radius: 14px; padding: 16px; box-shadow: var(--shadow); }
.fact strong { display: block; margin-bottom: 4px; }
.bullets { margin: 0 0 22px 1.1em; color: var(--muted); }
.bullets li { margin: 8px 0; }
.hero-shot {
  margin-top: 28px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
footer { background: var(--navy); color: #c5d6ea; padding: 28px 0 36px; font-size: .9rem; }
footer a { color: var(--gold); }
