:root {
  --bg: #fffdfc;
  --ink: #3f3336;
  --muted: #8a7578;
  --line: #eddfe2;
  --rose: #d48a94;
  --rose-2: #c46f7b;
  --blush: #f6e8eb;
  --cream: #f8f1eb;
  --ok: #2f7a52;
  --bad: #b43b3b;
  --r: 20px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

.top {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(255, 253, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s ease, gap 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.top.is-slim {
  padding: 6px 22px;
  gap: 12px;
  background: rgba(255, 253, 252, 0.97);
  box-shadow: 0 8px 22px rgba(196, 111, 123, 0.08);
}
.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  font-weight: 600;
  transition: font-size 0.35s ease, letter-spacing 0.35s ease;
}
.top.is-slim .logo {
  font-size: 1.16rem;
  letter-spacing: 0.14em;
}
.nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 40rem;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.35s ease, margin 0.35s ease, gap 0.35s ease;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--ink); }
.top.is-slim .nav {
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  gap: 0;
  pointer-events: none;
}
.top-acts { display: flex; align-items: center; gap: 8px; transition: gap 0.35s ease; }
.top-acts .btn-sm {
  height: 38px;
  padding: 0 16px;
  box-sizing: border-box;
  transition: height 0.35s ease, padding 0.35s ease, font-size 0.35s ease, box-shadow 0.35s ease;
}
.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(196, 111, 123, 0.16);
  transition: width 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}
.icon-btn svg {
  width: 38px;
  height: 38px;
  display: block;
  transition: width 0.35s ease, height 0.35s ease;
}
.icon-btn:hover { opacity: 0.88; }
.top.is-slim .top-acts { gap: 6px; }
.top.is-slim .top-acts .btn-sm {
  height: 28px;
  padding: 0 12px;
  font-size: 0.74rem;
}
.top.is-slim .icon-btn,
.top.is-slim .icon-btn svg {
  width: 28px;
  height: 28px;
}
.top.is-slim .icon-btn { box-shadow: 0 4px 10px rgba(196, 111, 123, 0.12); }
.top > .btn-sm {
  height: 38px;
  padding: 0 16px;
  box-sizing: border-box;
  margin-left: auto;
  transition: height 0.35s ease, padding 0.35s ease, font-size 0.35s ease;
}
.top.is-slim > .btn-sm {
  height: 28px;
  padding: 0 12px;
  font-size: 0.74rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--rose);
  color: #fff;
  font: 600 0.92rem/1 var(--font);
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(196, 111, 123, 0.18);
}
.btn:hover { background: var(--rose-2); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid #edd8db;
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--rose); }
.btn-wide { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: default; }

.visit-bar {
  position: sticky;
  top: 62px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(196, 111, 123, 0.06);
  transition: top 0.35s ease;
}
body:has(.top.is-slim) .visit-bar { top: 46px; }
.visit-bar[hidden] { display: none !important; }
.visit-bar.is-ok { background: #f4f8f5; }
.visit-bar.is-no { background: #fbf4f4; }
.visit-bar-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.visit-bar-when {
  margin: 2px 0 0;
  font-weight: 600;
  color: var(--ink);
}

.band {
  position: relative;
  padding: 84px 22px;
  scroll-margin-top: 72px;
}
.band + .band {
  box-shadow: inset 0 1px 0 rgba(196, 111, 123, 0.14);
}
.band:not(.band-hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(168px, 42%);
  height: 2px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #e2b4ba, transparent);
}
.band-hero {
  padding: 8px 0 56px;
  background:
    radial-gradient(720px 340px at 12% 0%, #f8e6ea 0%, transparent 60%),
    radial-gradient(640px 280px at 92% 10%, #f3ebe4 0%, transparent 55%),
    #fffdfc;
}
.band-soft { background: var(--cream); }
.band-white { background: #fff; }
.band-blush {
  background:
    radial-gradient(520px 220px at 88% 0%, #fdeef1 0%, transparent 55%),
    var(--blush);
}
.wrap { max-width: 1120px; margin: 0 auto; }
.block-h h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 14px 0 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose), transparent);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 22px 12px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 72px);
}
.hero-copy {
  padding-left: 18px;
  border-left: 2px solid #e2b4ba;
}
.hero-copy > * {
  animation: rise 0.7s ease both;
}
.hero-copy .eyebrow { animation-delay: 0.02s; }
.hero-copy h1 { animation-delay: 0.1s; }
.hero-copy .lede { animation-delay: 0.18s; }
.hero-copy .facts { animation-delay: 0.26s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.showcase {
  animation: rise 0.8s ease 0.16s both;
}
.showcase-kicker {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.showcase-window {
  overflow: hidden;
  border-radius: 22px;
}
.showcase-track {
  display: flex;
  gap: 12px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.shot {
  flex: 0 0 calc((100% - 24px) / 3);
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f7f3f2;
  border: 1px solid rgba(226, 180, 186, 0.35);
  min-height: 340px;
}
.shot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}
.shot:hover img { transform: scale(1.1); }
.shot figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}
.showcase-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.showcase-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.showcase-btn:hover { border-color: var(--rose); color: var(--rose); }
.showcase-dots { display: flex; gap: 7px; }
.showcase-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ddd;
  cursor: pointer;
}
.showcase-dots button.is-on { background: var(--rose); width: 22px; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .showcase { animation: none; }
  .showcase-track, .shot img { transition: none; }
}
.block { max-width: 1120px; margin: 0 auto; padding: 0; }
.eyebrow {
  color: var(--rose);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 14px;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.06;
  margin: 0 0 16px;
}
.lede { color: var(--muted); max-width: 38rem; margin: 0 0 22px; font-size: 1.05rem; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.facts div { margin: 0; }
.facts dt { color: var(--muted); font-size: 0.75rem; }
.facts dd { margin: 4px 0 0; font-weight: 600; }

.block-h { max-width: 36rem; }
.block-h h2 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.block-h .eyebrow { margin: 0 0 10px; }
.block-h h2 + p { margin: 16px 0 28px; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.card {
  display: grid;
  grid-template-rows: 92px auto;
  background: #fff;
  border: 1px solid rgba(226, 180, 186, 0.45);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 10px 28px rgba(196, 111, 123, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: border-color 0.25s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.card div { padding: 8px 10px 10px; }
.card h3 { margin: 0 0 3px; font-size: 0.86rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.price { color: var(--rose); font-weight: 700; }
.services.is-in .card {
  animation: rise 0.6s ease both;
  animation-delay: var(--d, 0.08s);
}
.services.is-in .card:hover {
  border-color: #e2b4ba;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(196, 111, 123, 0.1);
}
.services.is-in .card:hover img { transform: scale(1.07); }

.looks-block .block-h .eyebrow { margin-bottom: 8px; }
.look-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.chip-btn {
  border: 1px solid #edd8db;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  font: 600 0.78rem/1 var(--font);
  cursor: pointer;
}
.chip-btn:hover { border-color: var(--rose); }
.chip-btn.is-on { background: var(--rose); color: #fff; border-color: var(--rose); }

.looks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 148px;
  gap: 10px;
}
.look {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 180, 186, 0.35);
  background: #f7f3f2;
  box-shadow: 0 8px 24px rgba(196, 111, 123, 0.05);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}
.look-wide { grid-column: span 2; grid-row: span 2; }
.look-span { grid-column: span 2; }
.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.look span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: #fff;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.08);
}
.looks-block.is-in .look {
  animation: rise 0.65s ease both;
  animation-delay: var(--d, 0.08s);
}
.looks-block.is-in .look:hover img { transform: scale(1.08); }
.looks-block.is-in .look:hover { border-color: #e2b4ba; }
.looks-more {
  margin: 22px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}
.looks-more a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.looks-more a:hover { color: var(--rose-2); }

.people { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.person {
  border: 1px solid rgba(226, 180, 186, 0.4);
  border-radius: 24px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(196, 111, 123, 0.06);
}
.avatar-img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 42%;
  margin-bottom: 14px;
  border: 3px solid #f4e4e6;
}
.avatar-elizaveta { object-position: 50% 46%; filter: brightness(1.04); }
.avatar-alya { object-position: 50% 38%; filter: brightness(1.06); }
.person h3 { margin: 0 0 4px; }
.person p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.book { padding-bottom: 88px; }
.book-start { margin-top: 8px; }
.book-flow {
  display: grid;
  gap: 12px;
  max-width: 640px;
}
.book-wait[hidden] { display: none; }
.step {
  background: #fff;
  border: 1px solid rgba(226, 180, 186, 0.45);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(196, 111, 123, 0.06);
}
.step-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.step-tab small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step-tab strong { color: var(--ink); font-size: 1rem; font-weight: 600; }
.step-tab i { color: var(--rose); font-style: normal; font-size: 1.3rem; }
.step-panel { display: none; padding: 0 16px 16px; }
.step.is-open .step-panel { display: block; }
.step.is-open .step-tab i { transform: rotate(90deg); }
.pick-people, .pick-services { display: grid; gap: 8px; }
.pick-people { grid-template-columns: 1fr 1fr; }
.pick-person, .pick-service {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdfc;
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}
.pick-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.pick-service img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}
.pick-service span { display: flex; flex-direction: column; gap: 3px; }
.pick-service em { font-style: normal; color: var(--rose); font-size: 0.82rem; }
.pick-person.is-on, .pick-service.is-on { border-color: var(--rose); background: #f8eef0; }
.slot-label {
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.slot-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 4px;
  font: 600 0.85rem/1 var(--font);
  cursor: pointer;
}
.slot-btn.is-on { background: var(--rose); color: #fff; border-color: var(--rose); }
.contacts { display: grid; gap: 10px; }
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  max-width: 720px;
  background: #fff;
  border: 1px solid rgba(226, 180, 186, 0.45);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(196, 111, 123, 0.08);
}
.book-flow label,
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.book-flow input,
.form input, .form select {
  background: #fffdfc;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  font: 500 0.95rem/1.2 var(--font);
}
.form input:focus, .form select:focus {
  outline: 2px solid rgba(196, 92, 106, 0.22);
  border-color: var(--rose);
}
.date-field {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.picker {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fffdfc;
}
.picker-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ink);
  text-transform: capitalize;
}
.picker-shift {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}
.picker-week, .picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  text-align: center;
}
.picker-week { color: var(--muted); font-size: 0.72rem; margin-bottom: 6px; }
.picker-day {
  border: 0;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
  font: 600 0.85rem/1 var(--font);
  color: var(--ink);
  cursor: pointer;
}
.picker-day:hover:not(:disabled) { background: #f8eef0; }
.picker-day.is-on { background: var(--rose); color: #fff; }
.picker-day:disabled {
  color: #c9b6b8;
  background: #f4eeef;
  cursor: not-allowed;
  text-decoration: line-through;
}
.picker-pad { min-height: 32px; }
.time-field[hidden] { display: none; }
.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.status-box { max-width: 36rem; padding-top: 8px; padding-bottom: 48px; }
.book-page { max-width: 42rem; padding-bottom: 72px; }
.book-page h1 { margin: 0 0 8px; }
.book-page .lede { margin-bottom: 22px; }
.status-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.status-facts dt { color: var(--muted); font-size: 0.75rem; }
.status-facts dd { margin: 3px 0 0; font-weight: 600; }

.status-scene {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 22px;
}
.status-seal {
  position: relative;
  width: 168px;
  height: 168px;
}
.status-seal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.seal-halo {
  fill: none;
  stroke: rgba(212, 138, 148, 0.18);
  stroke-width: 1.5;
  transform-origin: 70px 70px;
}
.seal-track {
  fill: #fff;
  stroke: #f0dfe2;
  stroke-width: 2;
}
.seal-ring {
  fill: none;
  stroke: var(--rose);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transform-origin: 70px 70px;
  transform: rotate(-90deg);
}
.seal-check, .seal-x {
  fill: none;
  stroke: var(--ok);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.seal-x { stroke: var(--bad); }
.status-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}
.status-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.35;
}
.status-sparks {
  position: absolute;
  inset: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.status-sparks span {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50% 0 50% 50%;
  background: var(--rose);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--a)) translateY(0) scale(0.2);
}
.status-sparks span:nth-child(1) { --a: 8deg; background: #d48a94; }
.status-sparks span:nth-child(2) { --a: 53deg; background: #e2b4ba; }
.status-sparks span:nth-child(3) { --a: 98deg; background: #c46f7b; }
.status-sparks span:nth-child(4) { --a: 143deg; background: #f3c9b5; }
.status-sparks span:nth-child(5) { --a: 188deg; background: #d48a94; }
.status-sparks span:nth-child(6) { --a: 233deg; background: #e8a0aa; }
.status-sparks span:nth-child(7) { --a: 278deg; background: #c46f7b; }
.status-sparks span:nth-child(8) { --a: 323deg; background: #f6d6c8; }

.status-scene.is-wait .seal-ring {
  stroke-dasharray: 48 28;
  stroke-dashoffset: 0;
  animation: status-spin 7s linear infinite;
}
.status-scene.is-wait .seal-halo {
  animation: status-breathe 2.4s ease-in-out infinite;
}
.status-scene.is-wait .status-dots i {
  animation: status-dot 1.2s ease-in-out infinite;
}
.status-scene.is-wait .status-dots i:nth-child(2) { animation-delay: 0.15s; }
.status-scene.is-wait .status-dots i:nth-child(3) { animation-delay: 0.3s; }
.status-scene.is-wait .seal-check,
.status-scene.is-wait .seal-x { opacity: 0; }

.status-scene.is-ok .status-dots,
.status-scene.is-no .status-dots { display: none; }
.status-scene.is-ok .seal-halo { stroke: rgba(47, 122, 82, 0.22); }
.status-scene.is-no .seal-halo { stroke: rgba(180, 59, 59, 0.18); }
.status-scene.is-ok .seal-ring { stroke: #4c9a6e; }
.status-scene.is-no .seal-ring { stroke: #c45b5b; }
.status-scene.is-no .seal-check { display: none; }
.status-scene.is-ok .seal-x { display: none; }

.status-scene.is-ok.is-reveal .status-seal {
  animation: status-pop 0.7s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}
.status-scene.is-ok.is-reveal .seal-ring {
  animation: status-draw 0.55s ease forwards;
}
.status-scene.is-ok.is-reveal .seal-halo {
  animation: status-halo 0.9s ease 0.15s both;
}
.status-scene.is-ok.is-reveal .seal-check {
  animation: status-draw-check 0.45s ease 0.35s forwards;
}
.status-scene.is-ok.is-reveal .status-sparks span {
  animation: status-spark 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

.status-scene.is-no.is-reveal .status-seal {
  animation: status-no 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.status-scene.is-no.is-reveal .seal-ring {
  animation: status-draw 0.5s ease forwards;
}
.status-scene.is-no.is-reveal .seal-halo {
  animation: status-halo-no 0.8s ease 0.1s both;
}
.status-scene.is-no.is-reveal .seal-x.a {
  animation: status-draw-check 0.32s ease 0.32s forwards;
}
.status-scene.is-no.is-reveal .seal-x.b {
  animation: status-draw-check 0.32s ease 0.46s forwards;
}

.band-blush.is-ok {
  background:
    radial-gradient(420px 220px at 50% 12%, rgba(76, 154, 110, 0.16) 0%, transparent 62%),
    var(--blush);
}
.band-blush.is-no {
  background:
    radial-gradient(420px 220px at 50% 12%, rgba(196, 91, 91, 0.14) 0%, transparent 62%),
    var(--blush);
}

@keyframes status-spin {
  to { transform: rotate(270deg); }
}
@keyframes status-breathe {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes status-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40% { transform: translateY(-5px); opacity: 1; }
}
@keyframes status-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes status-draw-check {
  to { stroke-dashoffset: 0; }
}
@keyframes status-pop {
  0% { transform: scale(0.72); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes status-no {
  0% { transform: scale(0.78) rotate(-6deg); }
  55% { transform: scale(1.04) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes status-halo {
  0% { opacity: 0; transform: scale(0.86); }
  100% { opacity: 1; transform: scale(1.08); }
}
@keyframes status-halo-no {
  0% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0.85; transform: scale(0.98); }
}
@keyframes status-spark {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateY(8px) scale(0.15); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateY(-78px) scale(1); }
}
.form-note { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; }
.form-note.is-ok { color: var(--ok); }
.form-note.is-bad { color: var(--bad); }
.form .btn-wide { grid-column: 1 / -1; margin-top: 4px; }

.foot {
  border-top: 1px solid rgba(196, 111, 123, 0.16);
  background: #fff;
  padding: 8px 0 0;
}
.foot-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.95fr;
  gap: 20px;
  align-items: center;
}
.foot-col p { margin: 6px 0 0; color: var(--muted); font-size: 0.86rem; }
.foot-col a:not(.btn) { color: var(--rose); text-decoration: none; }
.foot-col a:not(.btn):hover { text-decoration: underline; }
.foot-addr {
  margin: 4px 0 0 !important;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink) !important;
  line-height: 1.2;
}
.visit-label {
  margin: 0;
  color: var(--rose);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 12px; }
.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.75rem;
  color: var(--ink);
}
.foot-map {
  height: 148px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f6f6f6;
}
.foot-map iframe { width: 100%; height: 100%; border: 0; }

.foot-col, .foot-map {
  opacity: 0;
  transform: translateY(16px);
}
.foot.is-in .foot-col,
.foot.is-in .foot-map {
  animation: rise 0.7s ease both;
}
.foot.is-in .foot-col:nth-child(1) { animation-delay: 0.05s; }
.foot.is-in .foot-find { animation-delay: 0.14s; }
.foot.is-in .foot-map { animation-delay: 0.24s; }
.foot.is-in .chips span {
  animation: rise 0.5s ease both;
}
.foot.is-in .chips span:nth-child(1) { animation-delay: 0.22s; }
.foot.is-in .chips span:nth-child(2) { animation-delay: 0.3s; }
.foot.is-in .chips span:nth-child(3) { animation-delay: 0.38s; }
.foot.is-in .chips span:nth-child(4) { animation-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  .top, .logo, .nav, .top-acts, .top-acts .btn-sm, .icon-btn, .icon-btn svg, .top > .btn-sm, .visit-bar {
    transition: none;
  }
  .foot-col, .foot-map, .chips span, .card, .look { opacity: 1; transform: none; animation: none; }
  .seal-ring, .seal-check, .seal-x, .seal-halo, .status-dots i, .status-sparks span, .status-seal {
    animation: none !important;
  }
  .seal-ring, .seal-check, .seal-x { stroke-dashoffset: 0; }
  .status-scene.is-wait .seal-check,
  .status-scene.is-wait .seal-x { opacity: 0; }
}

@media (max-width: 820px) {
  body { overflow-x: hidden; }
  .nav { display: none; }
  .band { padding: 48px 16px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
    padding: 16px 16px 8px;
  }
  .hero-copy { padding-left: 12px; }
  .top { padding: 12px 16px; gap: 10px; }
  .top.is-slim { padding: 5px 14px; }
  .top-acts { margin-left: auto; }
  .logo { font-size: 1.28rem; letter-spacing: 0.14em; }
  .top.is-slim .logo { font-size: 1.02rem; letter-spacing: 0.12em; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); line-height: 1.18; }
  .lede { font-size: 0.98rem; margin-bottom: 16px; }
  .people, .form, .pick-people, .slot-grid { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .looks { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .look-wide, .look-span { grid-column: span 2; grid-row: span 1; }
  .shot { flex-basis: 78%; min-height: 240px; }
  .shot img { height: 240px; }
  .visit-bar {
    top: 56px;
    padding: 10px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  body:has(.top.is-slim) .visit-bar { top: 42px; }
  .visit-bar .btn { width: 100%; }
}
