:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --card: #1d212b;
  --line: #2c3240;
  --text: #eef2f7;
  --muted: #b8c0cc;
  --accent: #c7a35d;
  --accent-2: #8d1f1f;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(199, 163, 93, 0.13), transparent 28%),
    linear-gradient(180deg, #0e1014 0%, #11141a 40%, #0b0d11 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}
h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
}
h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
p, li, span { color: inherit; }
p { margin: 0 0 1rem; color: var(--muted); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 12, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #f0d6a0);
  color: #111;
  font-weight: 800;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.lang-switcher {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.lang-switcher button {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-width: 48px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.lang-switcher button.is-active {
  background: linear-gradient(135deg, var(--accent), #e5c27b);
  color: #111;
}

.hero { padding: 5rem 0 4rem; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.hero__lead {
  font-size: 1.08rem;
  max-width: 62ch;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero__actions--center {
  justify-content: center;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
}
.button--primary {
  background: linear-gradient(135deg, var(--accent), #e5c27b);
  color: #111;
}
.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.button:hover { transform: translateY(-1px); }

.hero__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
}
.hero__caption {
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.stat span { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.story__panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  padding: 1.5rem;
}
.list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.list li {
  display: flex;
  gap: 0.8rem;
  align-items: start;
  color: var(--muted);
}
.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.45rem;
  flex: 0 0 auto;
}

.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.schedule .card p:last-child { margin-bottom: 0; }

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #111;
}
.gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}


.references {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.reference-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.reference-card h3 {
  margin-bottom: 0.75rem;
}
.reference-card p:last-child {
  margin-bottom: 0;
}
.reference-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 16px 16px 0;
  color: var(--muted);
}

.cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(141, 31, 31, 0.18), rgba(199, 163, 93, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  box-shadow: var(--shadow);
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.footer__inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

[data-i18n-list] li { color: var(--muted); }

@media (max-width: 980px) {
  .hero__grid,
  .story,
  .schedule,
  .gallery,
  .cards,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 3.5rem; }
}

@media (max-width: 720px) {
  .nav__inner { padding: 0.8rem 0; align-items: flex-start; }
  .nav__links { font-size: 0.9rem; }
  .section { padding: 4rem 0; }
  .nav__right { width: 100%; justify-content: flex-start; }
}
