:root {
  --bg: #0b0b0b;
  --bg-2: #141414;
  --panel: #1a1a1a;
  --ink: #f7f7f7;
  --muted: #a8a8a8;
  --gold: #f5c518;
  --gold-2: #ffe066;
  --line: rgba(255, 255, 255, 0.12);
  --ok: #6fbf8a;
  --display: "Bebas Neue", Impact, sans-serif;
  --font: "DM Sans", system-ui, sans-serif;
  --max: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip {
  position: absolute; left: 12px; top: -80px; z-index: 99;
  background: var(--gold); color: #111; padding: 10px 14px; font-weight: 700;
}
.skip:focus { top: 12px; }

.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--display); font-size: 28px; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo img {
  width: 36px; height: 36px; border-radius: 8px; object-fit: cover;
  border: 1px solid var(--line);
}
.logo span { color: var(--gold); }
.top nav { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; font-size: 14px; font-weight: 600; color: var(--muted); }
.top nav a:hover { color: var(--ink); }
.top .ig { color: var(--gold); }

.hero {
  position: relative; min-height: min(88vh, 720px);
  display: grid; align-items: end;
  padding: 48px clamp(16px, 4vw, 40px) 56px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.04);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,16,14,.35) 0%, rgba(18,16,14,.82) 55%, #12100e 100%),
    linear-gradient(90deg, rgba(18,16,14,.75), transparent 60%);
}
.hero-copy { position: relative; z-index: 1; max-width: 640px; }
.eyebrow {
  margin: 0 0 8px; color: var(--gold); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero h1 {
  margin: 0; font-family: var(--display); font-size: clamp(64px, 12vw, 112px);
  line-height: 0.9; letter-spacing: 0.02em;
}
.tagline { margin: 14px 0 24px; color: var(--muted); font-size: 18px; max-width: 420px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.meta {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  color: var(--muted); font-size: 13px; font-weight: 600;
}
.meta li::before { content: "· "; color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 20px; border-radius: 999px;
  font-weight: 700; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #14110d; }
.btn-gold:hover { background: var(--gold-2); }
.btn-line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-full { width: 100%; }

.strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.strip > div {
  background: var(--bg-2); padding: 22px clamp(16px, 3vw, 28px);
}
.strip strong { display: block; font-family: var(--display); font-size: 28px; letter-spacing: 0.04em; }
.strip span { color: var(--muted); font-size: 13px; font-weight: 600; }

.block { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 72px 0; }
.block h2 {
  margin: 0 0 10px; font-family: var(--display); font-size: clamp(40px, 7vw, 64px);
  letter-spacing: 0.03em; line-height: 1;
}
.lead { color: var(--muted); max-width: 520px; margin: 0 0 28px; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.svc-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 18px 18px 16px;
}
.svc-card h3 { margin: 0 0 6px; font-size: 18px; }
.svc-card p { margin: 0; color: var(--muted); font-size: 14px; }
.svc-card .price {
  margin-top: 14px; font-family: var(--display); font-size: 28px; color: var(--gold);
  letter-spacing: 0.04em;
}

.shots {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 200px 200px; gap: 10px;
}
.shots figure { margin: 0; overflow: hidden; border-radius: 16px; border: 1px solid var(--line); }
.shots img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.shots figure:hover img { transform: scale(1.04); }
.shots figure:first-child { grid-row: 1 / span 2; }
.shots figure:nth-child(5),
.shots figure:nth-child(6) { min-height: 180px; }

.about-row {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: center;
}
.about-photo {
  min-height: 380px; border-radius: 20px; border: 1px solid var(--line);
  background: #222 center/cover no-repeat;
}
.addr a { color: var(--gold); font-weight: 700; }

.book-sec {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start;
}
.hours { list-style: none; padding: 0; margin: 18px 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-top: 1px solid var(--line); font-weight: 600;
}
.addr { color: var(--muted); font-weight: 600; }

.book {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 22px; padding: 22px;
  position: sticky; top: 78px;
}
.book h3 { margin: 0 0 12px; font-family: var(--display); font-size: 32px; letter-spacing: 0.04em; }
.mini { margin: 14px 0 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.book label { display: block; font-weight: 700; font-size: 13px; margin: 12px 0; }
.book input {
  width: 100%; margin-top: 6px; min-height: 46px;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg); color: var(--ink);
}
.svc-list { display: grid; gap: 8px; }
.svc {
  display: flex; gap: 10px; align-items: center;
  padding: 12px; border-radius: 12px; border: 1px solid var(--line);
  cursor: pointer; font-weight: 600; font-size: 14px;
}
.svc:has(input:checked) { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.slot-btn {
  min-height: 42px; min-width: 68px; padding: 8px 10px;
  border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); font-weight: 700; cursor: pointer;
}
.slot-btn.on { background: var(--gold); color: #14110d; border-color: var(--gold); }
.slot-btn:disabled { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }
.ok {
  margin: 14px 0 0; padding: 12px; border-radius: 12px;
  background: rgba(111, 191, 138, 0.12); border: 1px solid rgba(111, 191, 138, 0.4);
  color: var(--ok); font-weight: 700;
}
.muted { color: var(--muted); font-weight: 600; font-size: 14px; }

.about { text-align: center; }
.about .lead, .about p { margin-left: auto; margin-right: auto; max-width: 520px; color: var(--muted); }

footer {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 28px clamp(16px, 4vw, 40px) 40px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 14px;
}
footer strong { color: var(--ink); }
.powered a { color: var(--gold); }

@media (max-width: 900px) {
  .strip, .book-sec, .svc-grid, .about-row { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .shots figure:first-child { grid-row: auto; grid-column: 1 / -1; height: 260px; }
  .shots figure { height: 180px; }
  .about-photo { min-height: 280px; }
  .book { position: static; }
  .top nav a:not(.ig) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
