:root {
  --cream: #fbf3ea;
  --cream-dark: #f3e2d4;
  --pink: #e94b9a;
  --pink-deep: #c42374;
  --pink-soft: #f7c6de;
  --pink-wash: #fde8f3;
  --ink: #2a1a22;
  --muted: #6b4d5a;
  --white: #fffdf9;
  --gold: #e7b35a;
  --ok: #2f8f63;
  --shadow: 0 18px 40px rgba(196, 35, 116, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, #ffd6ec 0, transparent 28%),
    radial-gradient(circle at 92% 0%, #ffe7c4 0, transparent 24%),
    radial-gradient(circle at 80% 90%, #f8cfe4 0, transparent 30%),
    var(--cream);
  min-height: 100vh;
  font-size: 1.12rem;
  line-height: 1.55;
}

body.easy {
  font-size: 1.28rem;
  line-height: 1.7;
}
body.easy .btn, body.easy .slot, body.easy .service-card {
  font-size: 1.15rem;
}

img { max-width: 100%; display: block; }
a { color: var(--pink-deep); }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
}
.skip:focus { left: 8px; z-index: 20; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--pink-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  border: 3px solid var(--pink);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: "Pacifico", cursive;
  font-size: 1.35rem;
  color: var(--pink-deep);
  font-weight: 400;
}
.brand-text span { font-size: 0.82rem; color: var(--muted); }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: var(--pink-wash);
  color: var(--pink-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  font-family: inherit;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-pink {
  background: linear-gradient(180deg, #f25bab, var(--pink-deep));
  color: white;
  box-shadow: 0 10px 20px rgba(196, 35, 116, 0.28);
}
.btn-cream {
  background: var(--white);
  color: var(--pink-deep);
  border: 2px solid var(--pink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px dashed var(--pink-soft);
}
.btn-wide { width: 100%; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 36px 0 20px;
}
.kicker {
  display: inline-block;
  background: var(--pink-wash);
  color: var(--pink-deep);
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: "Quicksand", sans-serif; line-height: 1.15; }
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 12px;
}
.script {
  font-family: "Pacifico", cursive;
  color: var(--pink);
  font-weight: 400;
}
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-card {
  background: var(--white);
  border-radius: 40px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  transform: rotate(2deg);
}
.hero-card img { border-radius: 30px; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill {
  background: white;
  border: 2px solid var(--pink-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.section { padding: 28px 0 10px; }
.section h2 { font-size: 2rem; margin-bottom: 8px; }
.grid-3, .grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 2px solid #ffe1f0;
}
.card h3 { margin-top: 0; color: var(--pink-deep); }

.notice {
  background: #fff4d6;
  border: 2px solid #f0c56a;
  border-radius: 20px;
  padding: 16px 18px;
}
.notice.pink {
  background: var(--pink-wash);
  border-color: var(--pink);
}

.service-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 2px dotted var(--pink-soft);
}
.service-card:last-child { border-bottom: 0; }
.price {
  white-space: nowrap;
  font-weight: 800;
  color: var(--pink-deep);
  text-align: right;
}
.time { color: var(--muted); font-size: 0.95rem; }

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  margin: 16px 0;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
}

footer {
  margin-top: 48px;
  padding: 28px 0 40px;
  border-top: 3px solid var(--pink-soft);
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Booking */
.book-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}
.progress {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  border: 2px solid var(--pink-soft);
  position: sticky;
  top: 100px;
}
.progress ol { margin: 0; padding-left: 20px; }
.progress li { margin: 10px 0; color: var(--muted); }
.progress li.active { color: var(--pink-deep); font-weight: 800; }
.progress li.done { color: var(--ok); }

.panel { display: none; }
.panel.active { display: block; }

.service-choice {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: 18px;
  padding: 14px 16px;
  margin: 8px 0;
  cursor: pointer;
  font: inherit;
}
.service-choice:hover, .service-choice.selected {
  border-color: var(--pink);
  background: var(--pink-wash);
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal .dow {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
}
.day {
  min-height: 46px;
  border: 0;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.day:disabled { opacity: 0.35; cursor: not-allowed; background: #f0e6ea; }
.day.selected { background: var(--pink); color: white; }

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.slot {
  border: 2px solid var(--pink-soft);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.slot.selected { background: var(--pink); color: white; border-color: var(--pink); }

label { display: block; font-weight: 800; margin: 14px 0 6px; }
input, textarea, select {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid var(--pink-soft);
  background: white;
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid var(--pink-soft);
  border-color: var(--pink);
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0;
  font-weight: 600;
}
.check input { width: auto; margin-top: 6px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.wait {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pink-wash);
  border: 2px solid var(--pink-soft);
  border-radius: 18px;
  padding: 14px 16px;
  margin: 10px 0 14px;
  font-weight: 800;
}
.wait[hidden] { display: none; }
.wait p { margin: 0; }
.spin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid var(--pink-soft);
  border-top-color: var(--pink-deep);
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cal.is-loading { opacity: 0.4; pointer-events: none; }

.summary dt { color: var(--muted); }
.summary dd { margin: 0 0 10px; font-weight: 800; }

.toast {
  background: #e6f8ee;
  border: 2px solid var(--ok);
  color: #145c38;
  border-radius: 18px;
  padding: 16px;
}

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--pink-soft); vertical-align: top; }

.easy-toggle {
  border: 2px solid var(--pink);
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 860px) {
  .hero, .book-layout, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .progress { position: static; }
  .brand-text strong { font-size: 1.1rem; }
  .nav { flex-wrap: wrap; }
}

.next-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 58px;
  z-index: 40;
  background: rgba(255, 253, 249, 0.96);
  border-top: 3px solid var(--pink);
  box-shadow: 0 -10px 30px rgba(196, 35, 116, 0.12);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}
.next-dock[hidden] { display: none; }
.next-dock-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.next-dock-inner .btn { margin-right: 140px; }
body:has(.next-dock:not([hidden])) { padding-bottom: 160px; }

.dayboard {
  position: relative;
  min-height: 400px;
  border: 2px solid var(--pink-soft);
  border-radius: 18px;
  background: #fffdf9;
  overflow: visible;
}
.day-block {
  position: absolute;
  left: 72px;
  right: 8px;
  border-radius: 14px;
  padding: 0;
  overflow: visible;
  color: #2a1a22;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(42, 26, 34, 0.08);
}
.day-block-info {
  position: sticky;
  top: 88px;
  background: inherit;
  border-radius: 12px;
  padding: 8px 10px;
  z-index: 2;
}
.day-block .btn { margin: 6px 6px 0 0; }
.day-block.confirmed { background: #f4b3d4; }
.day-block.requested { background: #ffe7c4; border-color: #c42374; }
.day-block.blocked { background: #e4e0e2; color: #444; }
.hour-labels {
  position: absolute;
  left: 8px;
  top: 0;
  width: 60px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
}
.view-toggle { display: flex; gap: 8px; margin: 10px 0 16px; }
