:root {
  --ink: #2a2941;
  --ink-soft: #5c5a7a;
  --mint: #32edbb;
  --amber: #fec34e;
  --lavender: #a694fe;
  --violet: #4840ff;
  --paper: #f0edff;
  --white: #ffffff;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display: "Outfit", Inter, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--amber); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.atmosphere {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px 380px at 8% -8%, rgba(50, 237, 187, 0.35), transparent 58%),
    radial-gradient(680px 360px at 96% 4%, rgba(166, 148, 254, 0.42), transparent 55%),
    radial-gradient(640px 420px at 50% 100%, rgba(254, 195, 78, 0.28), transparent 50%);
}
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(42, 41, 65, 0.13) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}
.wrap { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  isolation: isolate;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; letter-spacing: -0.04em; font-size: 18px;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 10px;
  border: 2.5px solid var(--ink); background: var(--mint);
  display: grid; place-items: center;
  box-shadow: 2px 2px 0 var(--ink); font-size: 16px;
}
.nav-links { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.nav-links a { padding: 0.45rem 0.9rem; border: 3px solid transparent; border-radius: 999px; }
.nav-links a:hover { color: var(--ink); background: var(--paper); border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 3px solid var(--ink); border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--display); font-weight: 800; font-size: 14px;
  background: var(--white); color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn-primary { background: var(--mint); }
.btn-amber { background: var(--amber); }
.btn-ghost { background: var(--white); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 5px 5px 0 var(--amber); }
.btn-lg { padding: 14px 22px; font-size: 15px; }

.hero { padding: 64px 0 32px; text-align: center; }
.hero h1 {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.04em;
  font-size: clamp(34px, 6vw, 64px); line-height: 1.04;
  margin: 18px auto 14px; max-width: 860px;
}
.hero h1 em { font-style: normal; color: var(--violet); }
.lead { max-width: 640px; margin: 0 auto 26px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; font-weight: 500; }

.trades {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 0 auto 28px;
}
.trade {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  border: 3px solid var(--ink); background: var(--white);
  font-weight: 800; font-size: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.trade:nth-child(1) { background: var(--mint); }
.trade:nth-child(2) { background: var(--lavender); }
.trade:nth-child(3) { background: var(--amber); }
.trade:nth-child(4) { background: #fff; }
.trade:nth-child(5) { background: #d8d4ff; }
.trade:nth-child(6) { background: #fff7d6; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.reviews { margin-top: 16px; font-weight: 800; color: var(--ink-soft); font-size: 14px; }
.reviews b { color: var(--ink); }

section { padding: 72px 0; }
.kicker {
  color: var(--violet); font-family: var(--display); font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 10px;
}
h2 {
  font-family: var(--display); font-size: clamp(26px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.08; margin: 0 0 14px;
}
.center { text-align: center; }
.center .lead, .center h2, .center .kicker { margin-left: auto; margin-right: auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bullets { list-style: none; padding: 0; margin: 20px 0 0; }
.bullets li {
  display: flex; gap: 12px; padding: 12px 0;
  border-top: 3px solid rgba(42, 41, 65, 0.12);
  color: var(--ink-soft); font-weight: 600;
}
.bullets strong { color: var(--ink); display: block; }
.check {
  width: 24px; height: 24px; flex: 0 0 24px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--mint);
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
  box-shadow: 2px 2px 0 var(--ink); margin-top: 2px;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  padding: 10px 14px; border: 3px solid var(--ink); border-radius: 16px;
  background: var(--white); font-weight: 800; font-size: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.chip:nth-child(odd) { background: var(--mint); }
.chip:nth-child(3n) { background: var(--amber); }
.chip:nth-child(4n) { background: var(--lavender); }

.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  border: 3px solid var(--ink); border-radius: 24px; padding: 22px;
  background: var(--white); box-shadow: 6px 6px 0 var(--ink);
}
.card:nth-child(1) { transform: rotate(-0.7deg); background: #fff; }
.card:nth-child(2) { transform: rotate(0.7deg); background: #fff7e6; }
.card:nth-child(3) { transform: rotate(-0.4deg); background: #f3efff; }
.card h3 { font-family: var(--display); margin: 0 0 10px; font-size: 22px; }
.card ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-weight: 600; line-height: 1.55; }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 280px; height: 560px; border-radius: 38px; padding: 10px;
  background: var(--ink); box-shadow: 10px 12px 0 var(--lavender);
  transform: rotate(2deg);
}
.phone-screen {
  height: 100%; border-radius: 30px; background: var(--paper);
  overflow: hidden; display: flex; flex-direction: column;
}
.notch { width: 108px; height: 18px; background: var(--ink); border-radius: 0 0 14px 14px; margin: 0 auto; }
.ph-top { padding: 10px 16px 6px; font-weight: 800; display: flex; justify-content: space-between; }
.ph-body { padding: 8px 14px 16px; flex: 1; }
.day {
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  padding: 12px; margin-bottom: 10px; box-shadow: 3px 3px 0 var(--ink);
}
.day b { display: block; font-family: var(--display); font-size: 22px; }
.slot {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 9px 0; border-top: 2px solid rgba(42,41,65,.12);
  font-size: 12px; font-weight: 700;
}
.tag { padding: 2px 8px; border-radius: 999px; border: 2px solid var(--ink); font-size: 11px; }
.ok { background: var(--mint); }
.warn { background: var(--amber); }

.shots {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 24px;
}
.shot {
  height: 220px; border: 3px solid var(--ink); border-radius: 22px;
  box-shadow: 5px 5px 0 var(--ink); padding: 12px; font-size: 12px; font-weight: 700;
}
.shot:nth-child(1) { background: var(--mint); transform: rotate(-2deg); }
.shot:nth-child(2) { background: var(--white); transform: rotate(1.4deg); }
.shot:nth-child(3) { background: var(--amber); transform: rotate(-1deg); }
.shot:nth-child(4) { background: var(--lavender); transform: rotate(1.8deg); }
.shot:nth-child(5) { background: #fff7d6; transform: rotate(-0.6deg); }
.shot b { display: block; font-family: var(--display); font-size: 15px; margin-bottom: 8px; }
.mini { background: rgba(255,255,255,.7); border: 2px solid var(--ink); border-radius: 10px; padding: 8px; margin-top: 8px; }

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote {
  border: 3px solid var(--ink); border-radius: 22px; padding: 20px;
  background: var(--white); box-shadow: 5px 5px 0 var(--ink);
}
.quote:nth-child(odd) { transform: rotate(-0.5deg); }
.quote:nth-child(even) { transform: rotate(0.5deg); background: #faf9ff; }
.quote p { margin: 0 0 12px; font-weight: 600; line-height: 1.5; }
.quote small { color: var(--ink-soft); font-weight: 800; }

.about {
  border: 3px solid var(--ink); border-radius: 28px; padding: 32px;
  background: var(--white); box-shadow: 8px 8px 0 var(--ink);
}
.cta-band {
  text-align: center; border: 3px solid var(--ink); border-radius: 32px;
  padding: 56px 24px; background: var(--mint); box-shadow: 8px 8px 0 var(--ink);
}
.cta-band .lead { color: var(--ink); max-width: 560px; margin-left: auto; margin-right: auto; }

footer { padding: 48px 0 28px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.foot { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 3px solid var(--ink); }
.foot nav { display: flex; flex-wrap: wrap; gap: 16px; font-weight: 800; }
.copy { padding-top: 18px; }

.legal { max-width: 720px; padding: 64px 0 80px; }
.legal p { color: var(--ink-soft); line-height: 1.65; font-weight: 500; }

.salon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.salon-card {
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.salon-photo {
  display: block;
  height: 180px;
  background: #ddd center/cover no-repeat;
  position: relative;
}
.salon-photo.tall { height: 220px; border-radius: 18px; border: 3px solid var(--ink); margin: 12px 0 22px; }
.salon-badge {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--mint); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 800;
}
.salon-body { padding: 16px; }
.salon-body h3 { margin: 0 0 6px; font-family: var(--display); }
.salon-body p { margin: 0 0 14px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.row-btns { display: flex; flex-wrap: wrap; gap: 8px; }

.salon-hero {
  min-height: 280px; border: 3px solid var(--ink); border-radius: 28px;
  background: #ccc center/cover no-repeat; box-shadow: 8px 8px 0 var(--ink);
  display: flex; align-items: flex-end; margin-bottom: 28px;
}
.salon-hero-card {
  margin: 18px; background: var(--white); border: 3px solid var(--ink);
  border-radius: 20px; padding: 18px 20px; box-shadow: 4px 4px 0 var(--ink);
}
.salon-hero-card h1 { margin: 8px 0 6px; font-size: 32px; }
.salon-hero-card p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-top: 2px solid rgba(42,41,65,.12); font-weight: 700; }
.book-box, .cfg-form {
  border: 3px solid var(--ink); border-radius: 24px; padding: 22px;
  background: var(--white); box-shadow: 6px 6px 0 var(--ink);
}
.book-box label, .cfg-form label { display: block; font-weight: 800; font-size: 13px; margin: 12px 0; }
.book-box input, .cfg-form input, .cfg-form textarea, .cfg-form select, .auth-card input {
  width: 100%; margin-top: 6px; padding: 11px 12px;
  border: 3px solid var(--ink); border-radius: 12px; background: var(--paper); font-weight: 600;
  font-family: inherit;
}
.svc-list { display: grid; gap: 8px; margin-bottom: 8px; }
.svc { display: flex; gap: 10px; align-items: center; padding: 10px; border: 2.5px solid var(--ink); border-radius: 14px; font-weight: 600; }
.mini-label { font-weight: 800; font-size: 13px; margin: 12px 0 8px; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.slot-btn {
  border: 2.5px solid var(--ink); border-radius: 12px; background: var(--paper);
  padding: 8px 10px; font-weight: 800; font-size: 13px;
}
.slot-btn.on { background: var(--mint); }
.slot-btn.taken { opacity: 0.35; text-decoration: line-through; }
.ok-msg { color: #0b8f6c; font-weight: 800; }
.muted { color: var(--ink-soft); font-weight: 600; }
.cfg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.cfg-grid .full { grid-column: 1 / -1; }
.hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0 24px; }
.svc-row { display: grid; grid-template-columns: 1fr 90px 90px 44px; gap: 8px; margin-bottom: 8px; }
.cfg-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
h3 { font-family: var(--display); }

.auth-wrap { min-height: 70vh; display: grid; place-items: center; padding: 40px 0 80px; }
.auth-card {
  width: min(460px, 100%);
  border: 3px solid var(--ink); border-radius: 28px; padding: 28px;
  background: var(--white); box-shadow: 8px 8px 0 var(--ink);
}
.auth-card h1 { font-family: var(--display); font-size: 28px; margin: 0 0 10px; }
.auth-card label { display: block; font-weight: 800; font-size: 13px; margin: 12px 0; }
.panel-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; }
.empty-card {
  border: 3px dashed var(--ink); border-radius: 24px; padding: 32px;
  background: rgba(255,255,255,.7); text-align: center;
}
.photo-presets { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 10px 0; }
.preset {
  height: 72px; border: 3px solid var(--ink); border-radius: 14px;
  background: #ddd center/cover no-repeat; cursor: pointer; position: relative; overflow: hidden;
}
.preset span {
  position: absolute; left: 6px; bottom: 6px;
  background: var(--white); border: 2px solid var(--ink); border-radius: 999px;
  padding: 2px 8px; font-size: 11px; font-weight: 800;
}
.share-box { margin-top: 18px; padding: 14px; border: 3px solid var(--ink); border-radius: 18px; background: #fff8dc; }
.share-row { display: flex; gap: 8px; }
.share-row input { flex: 1; }
.check-line { display: flex !important; align-items: center; gap: 10px; font-weight: 700; }
.check-line input { width: auto !important; margin: 0; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-user { font-size: 12px; font-weight: 700; color: var(--ink-soft); max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
.booking-list { display: grid; gap: 10px; }
.booking-item {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  border: 3px solid var(--ink); border-radius: 18px; padding: 14px 16px; background: var(--white);
}
.booking-item p { margin: 4px 0 0; }
.booking-when { font-weight: 800; white-space: nowrap; }
.muted { color: var(--ink-soft); font-weight: 600; }

.menu-btn { display: none; background: none; border: 0; font-size: 22px; }

@media (max-width: 980px) {
  .split, .cols, .quotes, .shots, .salon-grid, .book-grid, .cfg-grid, .hours-grid { grid-template-columns: 1fr; }
  .shots, .salon-grid { grid-template-columns: 1fr 1fr; }
  .photo-presets { grid-template-columns: repeat(3, 1fr); }
  .booking-item { flex-direction: column; align-items: flex-start; }
  .phone { transform: none; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
    padding: 16px; box-shadow: 5px 5px 0 var(--ink);
  }
}
@media (max-width: 560px) {
  .shots, .salon-grid { grid-template-columns: 1fr; }
}
