:root {
  --bg: #050505;
  --surface: #14110d;
  --surface-2: #1d1912;
  --border: rgba(245, 241, 232, 0.09);
  --text: #f5f1e8;
  --text-muted: rgba(245, 241, 232, 0.62);
  --gold: #d7b06a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
}

.ig-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.ig-link:hover { color: var(--text); }

/* ---------- hero ---------- */

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero-mark {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.tagline {
  font-size: clamp(18px, 2.6vw, 22px);
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 20px;
}

.tagline.small { font-size: 17px; margin-bottom: 24px; }

.lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.cta-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.badge {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ---------- gallery ---------- */

.gallery {
  padding: 8px 0 88px;
}

.gallery-inner {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}

.gallery-inner img {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: 220px;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* ---------- features ---------- */

.features {
  padding: 20px 0 96px;
  border-top: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 64px;
}

.feature {
  background: var(--surface);
  padding: 32px 28px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--gold);
}

.feature p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- closing ---------- */

.closing {
  text-align: center;
  padding: 88px 0 96px;
  border-top: 1px solid var(--border);
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
}

.footer-inner {
  text-align: center;
}

.disclaimer {
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links a:hover { color: var(--gold); }

.copyright {
  font-size: 12.5px;
  color: var(--text-muted);
  opacity: 0.6;
  margin: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 600px) {
  .hero { padding: 72px 0 56px; }
  .gallery-inner img { width: 168px; }
  .feature-grid { margin-top: 48px; }
}
