:root {
  --green: #87c95c;
  --green-deep: #3d7a32;
  --ink: #1d2a1a;
  --cream: #f6f3ea;
  --gold: #e8c547;
  --wood: #5c3d2e;
  --muted: #5a6854;
  --card: #fffdf7;
  --shadow: 0 18px 50px rgba(29, 42, 26, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 16px/1.55 "Nunito", "PingFang SC", "Microsoft YaHei", sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 6vw;
  background: rgba(246, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 61, 46, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand img { width: 48px; height: 48px; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a { color: var(--muted); font-weight: 700; font-size: 14px; }
.lang {
  border: 1px solid #d7cbb3;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  color: var(--wood);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media, .hero video, .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster {
  background: #1d2a1a url("media/poster.webp") center/cover no-repeat;
  animation: ken 22s ease-in-out infinite alternate;
}
body.has-video .hero-poster { opacity: 0; }
@keyframes ken {
  from { transform: scale(1.05); }
  to { transform: scale(1.18) translate(-2%, -1%); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 28, 14, 0.35) 0%, rgba(16, 28, 14, 0.55) 55%, rgba(16, 28, 14, 0.82) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 72px 20px 88px;
}
.hero-copy .logo {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.kicker {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232, 197, 71, 0.2);
  border: 1px solid rgba(232, 197, 71, 0.55);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero p.lead {
  margin: 0 auto 28px;
  max-width: 34em;
  font-size: clamp(16px, 2.2vw, 21px);
  color: #f3eee2;
}
.cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 0;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #f3d56a, #d4a017);
  color: #3a2a08;
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.section { padding: 72px 6vw; }
.section h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(26px, 4vw, 36px);
}
.section .sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 40em;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid #eadfca;
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.card .art {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #eef6e4;
  border-radius: 16px;
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 6px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
  min-height: 460px;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 0.4s ease;
}
.gallery a:hover img { transform: scale(1.05); }
.gallery a:first-child { grid-row: 1 / span 2; }

.footer {
  background: #1d2a1a;
  color: #e8eedf;
  padding: 48px 6vw 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto 28px;
}
.footer h3 { margin: 0 0 12px; color: var(--gold); font-size: 15px; letter-spacing: 0.06em; }
.stores, .socials { display: flex; flex-wrap: wrap; gap: 8px; }
.store, .social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}
.store.soon { opacity: 0.7; }
.legal {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a7b39c;
  font-size: 12px;
}
.legal a { text-decoration: underline; }

@media (max-width: 860px) {
  .features, .foot-grid, .gallery { grid-template-columns: 1fr; }
  .gallery a:first-child { grid-row: auto; }
  .nav-links a[data-i] { display: none; }
  .hero { min-height: 88vh; }
  .brand span { display: none; }
}
