:root {
  --bg: #070405;
  --bg-2: #11080b;
  --wine: #9a2340;
  --gold: #e4c27a;
  --gold-2: #f6e6ba;
  --paper: #f6efe4;
  --muted: #b7a48f;
  --line: rgba(228,194,122,.22);
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: .05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
button, input, select, textarea { font: inherit; cursor: none; }
.wrap { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }

.cursor {
  position: fixed; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); pointer-events: none; z-index: 200;
  mix-blend-mode: difference; transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.cursor.big { width: 44px; height: 44px; background: transparent; border: 1px solid var(--gold-2); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 16px 30px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
  transition: .3s transform, .3s background, .3s color;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(180deg, #f3e3b8, var(--gold)); color: #2a0b12; }
.btn-line { background: transparent; color: var(--paper); border: 1px solid var(--line); }
.btn-wine { background: var(--wine); color: #fff; }

.topbar {
  position: relative; z-index: 50;
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 24px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); background: #050203; border-bottom: 1px solid var(--line);
}
.header {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 60;
  mix-blend-mode: difference;
}
.header .wrap, .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 36px; height: 36px; object-fit: cover; border-radius: 50%; }
.logo-name { font-family: var(--serif); font-size: 28px; letter-spacing: .08em; }
nav { display: flex; gap: 28px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(246,239,228,.35);
  background: transparent; color: inherit; display: grid; place-items: center; position: relative;
}
.badge { position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px; border-radius: 99px; background: var(--gold); color: #2a0b12; font-size: 10px; display: grid; place-items: center; font-weight: 800; }
.header-cta { display: flex; align-items: center; gap: 14px; }

.hero {
  position: relative; height: 100vh; min-height: 740px; overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.hero-bg {
  position: absolute; inset: -8%;
  background: url("img/hero.png") center/cover;
  filter: saturate(1.05) contrast(1.05);
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 40%, transparent 0%, rgba(7,4,5,.35) 55%, rgba(7,4,5,.78) 100%),
    linear-gradient(180deg, rgba(7,4,5,.15), rgba(7,4,5,.55) 90%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 24px; }
.hero-crown { width: 72px; height: 72px; margin: 0 auto 18px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 40px rgba(228,194,122,.35); }
.hero .kicker { letter-spacing: .48em; text-transform: uppercase; font-size: 11px; color: var(--gold-2); }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(64px, 14vw, 180px); line-height: .78;
  margin: 18px 0 10px;
}
.hero h1 i { font-style: italic; color: var(--gold); display: block; font-size: .52em; letter-spacing: .08em; }
.hero p { max-width: 420px; margin: 18px auto 28px; color: #eadfce; font-size: 17px; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-2);
}
.scroll-hint::after {
  content: ""; display: block; width: 1px; height: 48px; margin: 10px auto 0;
  background: linear-gradient(var(--gold), transparent); animation: drip 1.6s ease infinite;
}
@keyframes drip { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.statement {
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 100vh;
}
.statement img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.statement-copy {
  display: grid; align-content: center; padding: 80px 64px;
  background: var(--bg-2);
}
.statement-copy h2 {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); line-height: .95; font-weight: 500;
}
.gold-line { width: 72px; height: 1px; background: var(--gold); margin: 22px 0; }
.statement-copy p { color: var(--muted); font-size: 18px; max-width: 38ch; }

.section { padding: 100px 0; }
.section h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 72px); font-weight: 500; line-height: .95; }
.eyebrow { letter-spacing: .32em; text-transform: uppercase; font-size: 11px; color: var(--gold); margin-bottom: 12px; }

.reel-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.reel {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 4vw 30px; scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }
.reel .card { min-width: min(320px, 78vw); scroll-snap-align: start; }

.card {
  background: #14090c; border: 1px solid var(--line); overflow: hidden;
  transition: .4s transform, .4s border-color;
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); }
.card-img { height: 360px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: .8s; }
.card:hover .card-img img { transform: scale(1.08); }
.tag { position: absolute; left: 16px; top: 16px; padding: 6px 10px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; background: rgba(7,4,5,.7); color: var(--gold-2); }
.card-body { padding: 18px; }
.series { color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: 11px; }
.card-body h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 6px 0; }
.card-meta { color: var(--muted); font-size: 13px; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.price { font-weight: 700; }

.bands { display: grid; }
.band {
  min-height: 46vh; position: relative; overflow: hidden; display: grid; align-items: end;
  color: #fff;
}
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,4,5,.72), transparent 55%); }
.band-copy { position: relative; z-index: 1; padding: 48px 8vw; }
.band h3 { font-family: var(--serif); font-size: clamp(42px, 6vw, 84px); font-weight: 500; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-dark {
  min-height: 280px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(160deg, rgba(154,35,64,.9), rgba(7,4,5,.85)), url("img/mattress.png") center/cover;
}
.promo-dark h3 { font-family: var(--serif); font-size: 36px; font-weight: 500; }

.cta {
  margin: 0 24px 40px; min-height: 420px; position: relative; overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; background: rgba(7,4,5,.55); }
.cta-copy { position: relative; z-index: 1; padding: 40px; }
.cta h2 { font-size: clamp(40px, 7vw, 88px); }

footer { padding: 60px 0 24px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 24px; }
footer h4 { color: var(--gold-2); letter-spacing: .18em; text-transform: uppercase; font-size: 11px; margin-bottom: 12px; }
.copy { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit { border: 1px solid var(--line); padding: 22px; background: #11080b; }
.benefit h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-photo img { width: 100%; min-height: 420px; object-fit: cover; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(48px, 8vw, 96px); font-weight: 500; line-height: .9; }
.lead { color: var(--muted); max-width: 46ch; margin-top: 12px; font-size: 18px; }

.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; }
.filters { position: sticky; top: 110px; height: fit-content; border: 1px solid var(--line); padding: 20px; background: #10080a; }
.filters h3 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 16px 0 8px; }
.filters label { display: flex; gap: 8px; margin: 6px 0; font-size: 14px; }
.filters input[type="search"] { width: 100%; background: #070405; border: 1px solid var(--line); color: #fff; padding: 10px 12px; }

.drawer, .modal { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 120; display: none; }
.drawer.open, .modal.open { display: block; }
.drawer-panel { position: absolute; right: 0; top: 0; height: 100%; width: min(420px,100%); background: #11080b; padding: 28px; overflow: auto; }
.modal-panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(880px, calc(100% - 24px)); max-height: 90vh; overflow: auto;
  background: #11080b; display: grid; grid-template-columns: .9fr 1fr; gap: 20px; padding: 16px;
}
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 70px; height: 70px; object-fit: cover; }
.form { display: grid; gap: 10px; margin-top: 16px; }
.form input, .form textarea, .form select { background: #070405; border: 1px solid var(--line); color: #fff; padding: 12px; }
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #2a0b12; padding: 12px 18px; border-radius: 999px; display: none; z-index: 150; font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.salon { border: 1px solid var(--line); padding: 28px; background: #11080b; }
.salon h3 { font-family: var(--serif); font-size: 32px; }
.map-wrap { min-height: 420px; overflow: hidden; }
#mobileNav { display: none; position: fixed; inset: 90px 16px auto; background: #11080b; border: 1px solid var(--line); padding: 18px; z-index: 80; }
#mobileNav a { display: block; padding: 10px 0; letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
  nav, .phone-text { display: none; }
  .burger { display: grid; }
  .statement, .catalog-layout, .modal-panel, .footer-grid, .two-col, .grid, .benefits, .about-grid { grid-template-columns: 1fr; }
  .header { mix-blend-mode: normal; background: rgba(7,4,5,.72); backdrop-filter: blur(12px); top: 0; }
  .topbar { display: none; }
  .statement-copy { padding: 48px 24px; }
  .hero { min-height: 100svh; }
}
