:root {
  --primary: #7c5cff;
  --bg: #12111c;
  --ink: #eceafe;
  --accent: #34d399;
  --paper: #1a1828;
  --line: #2d2a40;
  --mute: #9994c8;
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Source Sans 3', system-ui, sans-serif;
  --r: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.wrap { width: min(1160px, 92vw); margin-inline: auto; }

h1 { font-family: var(--display); font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; line-height: 1.05; }
h1 em { font-style: italic; color: var(--primary); }
h2 { font-family: var(--display); font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; line-height: 1.1; }
h3 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
p { color: var(--mute); line-height: 1.65; }
.lead { font-size: clamp(16px, 1.4vw, 18px); max-width: 48ch; color: var(--mute); }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(18,17,28,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { font-size: 18px; font-weight: 700; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand__bubble { font-size: 20px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 600; transition: color 0.15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 999px; transition: transform 0.15s, background 0.15s; }
.btn:hover { transform: translateY(-2px); background: #6447e8; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { background: var(--line); }
.btn--outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--accent { background: var(--accent); color: #0a2a1e; }
.btn--accent:hover { background: #2bc48a; }

/* HERO */
.hero { position: relative; }
.hero__cover { position: relative; height: clamp(480px, 70vh, 680px); overflow: hidden; }
.hero__cover img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.4); }
.hero__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 7vw, 80px); }
.hero__badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.badge { background: rgba(124,92,255,.3); border: 1px solid rgba(124,92,255,.5); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.hero__overlay h1 { color: #fff; margin-bottom: 16px; max-width: 12ch; }
.hero__sub { color: rgba(255,255,255,.72); font-size: clamp(15px, 1.4vw, 18px); max-width: 48ch; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* SECTION */
.section { padding: clamp(60px, 8vw, 96px) 0; }

/* SHELVES */
.shelves__head { max-width: 52ch; margin-bottom: 40px; }
.shelves__head h2 { margin-bottom: 10px; }
.shelves__head p { color: var(--mute); }
.shelves__grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
.shelf-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; min-height: 220px; transition: border-color 0.2s; }
.shelf-card:hover { border-color: var(--primary); }
.shelf-card--hero { background: linear-gradient(135deg, var(--primary) 0%, #5a3fcf 100%); border-color: transparent; }
.shelf-card--hero h3 { color: #fff; }
.shelf-card--hero p { color: rgba(255,255,255,.78); }
.shelf-card--hero .shelf-card__label { background: rgba(255,255,255,.2); color: #fff; }
.shelf-card--hero .shelf-card__price { color: rgba(255,255,255,.9); }
.shelf-card__label { align-self: flex-start; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); background: rgba(124,92,255,.12); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.shelf-card h3 { color: var(--ink); font-size: 18px; }
.shelf-card p { color: var(--mute); font-size: 14px; flex: 1; margin-top: 8px; }
.shelf-card__price { font-size: 15px; font-weight: 700; color: var(--accent); margin-top: 16px; }
.shelves__more { display: flex; align-items: center; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.shelves__more p { color: var(--mute); font-size: 15px; }

/* CLUB */
.club { background: var(--paper); padding: clamp(60px, 8vw, 96px) 0; border-block: 1px solid var(--line); }
.club__wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.club h2 { color: var(--ink); margin: 10px 0 16px; }
.club .lead { margin-bottom: 24px; }
.club__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 28px; }
.club__crd { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.club__crd strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 8px; }
.club__crd p { font-size: 13.5px; color: var(--mute); line-height: 1.55; margin-bottom: 8px; }
.club__crd span { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.club__visual { display: flex; flex-direction: column; gap: 14px; padding-top: 36px; }
.club__bubble { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; border-bottom-left-radius: 4px; padding: 14px 18px; font-size: 14px; color: var(--mute); position: relative; }
.club__bubble--1::before { content: '"'; font-size: 28px; color: var(--primary); font-family: var(--display); line-height: 1; display: block; margin-bottom: 4px; }
.club__bubble--2 { border-bottom-right-radius: 4px; border-bottom-left-radius: 20px; }
.club__bubble--3 { border-bottom-right-radius: 4px; border-bottom-left-radius: 20px; }
.club__stats-box { background: linear-gradient(135deg, var(--primary) 0%, #5a3fcf 100%); border-radius: 18px; padding: 20px; display: flex; gap: 20px; }
.cstat { flex: 1; text-align: center; }
.cstat strong { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.cstat span { font-size: 12px; color: rgba(255,255,255,.7); }

/* ABOUT */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.about__text h2 { margin-bottom: 16px; }
.about__text p { margin-bottom: 14px; max-width: 52ch; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.feat__ic { font-size: 26px; flex-shrink: 0; }
.feat strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 6px; }
.feat p { font-size: 13.5px; line-height: 1.55; }

/* CONTACT */
.contact { padding: clamp(56px, 7vw, 88px) 0; }
.contact__inner { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: clamp(32px, 4vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.contact__inner h2 { margin-bottom: 12px; }
.contact__inner p { color: var(--mute); max-width: 46ch; }
.contact__hours { margin: 8px 0 16px !important; font-size: 14px; color: var(--mute) !important; }
.contact__links { display: flex; gap: 20px; flex-wrap: wrap; }
.contact__links a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact__links a:hover { text-decoration: underline; }

/* FOOTER */
.foot { background: #0c0b15; padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.foot__in span:first-child { color: rgba(255,255,255,.8); font-weight: 600; }
.foot__in span:last-child { color: rgba(255,255,255,.35); }

@media (max-width: 900px) {
  .shelves__grid { grid-template-columns: repeat(2, 1fr); }
  .club__wrap { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .contact__inner { flex-direction: column; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .shelves__grid { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .club__cards { grid-template-columns: 1fr; }
  .hero__cover { height: 420px; }
}
