:root {
  --bg: #0d0d14;
  --bg-soft: #171727;
  --text: #f3f4f8;
  --muted: #b7bad0;
  --accent: #ff5c8a;
  --accent-2: #8a6dff;
  --border: #2a2b3f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #0c0c13, #111322);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 13, 20, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.hero {
  padding: 84px 0 48px;
}

.hero-inner {
  max-width: 760px;
}

.badge {
  display: inline-block;
  background: rgba(255, 92, 138, 0.15);
  border: 1px solid rgba(255, 92, 138, 0.4);
  color: #ffc5d6;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
}

h1 {
  margin: 16px 0;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

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

.btn {
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.section {
  padding: 34px 0 16px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.section-top {
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card p {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: #d7d9e8;
}

.img-missing {
  padding: 50px 12px;
  text-align: center;
  color: #a9adc4;
  font-size: 0.88rem;
}

.prices {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.price-card {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 16px;
}

.price-card h3 {
  margin: 0 0 10px;
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
  color: #d4d7ea;
}

.price-card li {
  margin: 8px 0;
}

.prices-note {
  margin-top: 10px;
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 12, 0.6);
}

.footer-inner {
  padding: 22px 0 30px;
}

.footer-inner p {
  margin: 6px 0;
  color: var(--muted);
}

.footer-inner a {
  color: #ffd2df;
}

.muted {
  opacity: 0.8;
}

@media (max-width: 700px) {
  nav {
    gap: 10px;
    font-size: 0.9rem;
  }
}
