:root {
  --ink: #20191e;
  --muted: #6d6269;
  --paper: #fffafc;
  --white: #ffffff;
  --pink: #dda9d2;
  --pink-deep: #b966a5;
  --pink-soft: #f7e8f2;
  --rose: #f1c6d7;
  --orange: #ff7c25;
  --green: #2f7a57;
  --danger: #a83c4d;
  --line: rgba(67, 42, 58, .13);
  --shadow: 0 24px 70px rgba(88, 51, 76, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 84px 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 252, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(73, 42, 63, .06); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -.02em; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--pink-deep); transition: .25s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 8px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .25s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(32, 25, 30, .18); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.button-small { min-height: 41px; padding-inline: 17px; }
.button-light { background: white; color: var(--ink); border-color: white; }
.text-link { font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-button { border: 0; background: transparent; text-decoration: underline; font-weight: 700; padding: 8px; }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; padding-top: 54px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; color: var(--pink-deep); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -.045em; line-height: 1.04; }
h1 { font-size: clamp(56px, 6.5vw, 88px); margin-bottom: 23px; }
h1 em { color: var(--pink-deep); font-weight: 600; }
h2 { font-size: clamp(40px, 4.7vw, 62px); margin-bottom: 16px; }
.hero-text { max-width: 610px; font-size: 17px; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 23px; margin-top: 30px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 32px; color: var(--muted); font-size: 13px; }
.hero-notes span::before { content: "✿"; color: var(--orange); margin-right: 7px; }
.hero-card { position: relative; min-height: 490px; display: grid; place-items: center; }
.hero-logo-shell { width: min(430px, 100%); aspect-ratio: 1; border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%; background: white; padding: 28px; box-shadow: var(--shadow); transform: rotate(2deg); animation: float 6s ease-in-out infinite; }
.hero-logo-shell img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.floating-badge { position: absolute; padding: 12px 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 16px 40px rgba(76, 43, 64, .12); font-size: 12px; font-weight: 700; }
.badge-top { top: 12%; right: -2%; transform: rotate(5deg); }
.badge-bottom { bottom: 11%; left: -3%; transform: rotate(-5deg); }
.hero-decoration { position: absolute; border-radius: 50%; z-index: -1; }
.hero-decoration-one { width: 430px; height: 430px; background: var(--pink-soft); top: -190px; left: -180px; }
.hero-decoration-two { width: 170px; height: 170px; border: 32px solid rgba(255,124,37,.08); right: 5%; bottom: 8%; }
@keyframes float { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-10px); } }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 34px; }
.section-heading h2 { max-width: 680px; margin-bottom: 0; }
.section-heading.centered { display: block; text-align: center; max-width: 760px; margin: 0 auto 36px; }
.section-heading.centered p:last-child { color: var(--muted); }
.gallery-section { background: white; }
.carousel { position: relative; margin-bottom: 20px; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; gap: 18px; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.work-card { min-width: calc((100% - 36px) / 3); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 16px 45px rgba(66,42,56,.12); }
.nail-art { height: 265px; display: flex; align-items: end; justify-content: center; gap: 9px; padding: 38px 22px; overflow: hidden; }
.nail-art span { width: 31px; height: 115px; border-radius: 20px 20px 12px 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 12px 18px rgba(62,42,54,.12); transform-origin: bottom center; }
.nail-art span:nth-child(1), .nail-art span:nth-child(5) { height: 88px; transform: rotate(7deg); }
.nail-art span:nth-child(2), .nail-art span:nth-child(4) { height: 105px; }
.nail-art span:nth-child(5) { transform: rotate(-7deg); }
.theme-blush { background: linear-gradient(150deg,#f8e4ec,#efc9d8); }
.theme-blush span { background: linear-gradient(180deg,#f7d8e6,#c97e9d); }
.theme-french { background: linear-gradient(150deg,#f4eee7,#dfd1c5); }
.theme-french span { background: linear-gradient(180deg,#f5d7cf 0 73%,#fff 74%); }
.theme-daisy { background: linear-gradient(150deg,#eadff4,#cdb8df); }
.theme-daisy span { background: radial-gradient(circle at 50% 52%,#ffc849 0 6%,#fff 7% 25%,transparent 26%),#b88ccb; }
.theme-cherry { background: linear-gradient(150deg,#f7d9df,#f1b4bf); }
.theme-cherry span { background: #aa163a; }
.work-meta { padding: 18px 20px 20px; }
.work-meta span { display: block; color: var(--pink-deep); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.work-meta strong { font-family: "Playfair Display", serif; font-size: 21px; }
.carousel-control { position: absolute; top: 40%; z-index: 4; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 8px 22px rgba(72,45,62,.12); }
.carousel-control.prev { left: -23px; }
.carousel-control.next { right: -23px; }
.carousel-control:disabled { opacity: .35; cursor: default; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; }
.carousel-dots button { width: 8px; height: 8px; border: 0; padding: 0; border-radius: 50%; background: #dbcbd4; }
.carousel-dots button.active { width: 25px; border-radius: 999px; background: var(--pink-deep); }

.services-section { background: var(--pink-soft); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 285px; display: flex; flex-direction: column; padding: 26px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.service-card.featured { background: var(--ink); color: white; }
.service-card.featured p { color: #ddd2d8; }
.service-card h3 { font-family: "Playfair Display", serif; font-size: 27px; line-height: 1.08; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-kicker { color: var(--pink-deep) !important; font-size: 10px !important; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 8px; }
.price { margin-top: auto; font-size: 21px; }
.service-select { align-self: flex-start; border: 0; border-bottom: 1px solid currentColor; padding: 0 0 2px; margin-top: 14px; background: transparent; font-weight: 700; }
.popular-tag { position: absolute; top: 0; right: 0; padding: 7px 14px; border-radius: 0 0 0 15px; background: var(--orange); color: white; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.removal-strip { margin-top: 14px; padding: 18px 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); text-align: center; color: var(--muted); font-size: 14px; }
.removal-strip strong { color: var(--ink); }

.booking-section { background: white; }
.booking-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 62px; align-items: start; }
.booking-intro { position: sticky; top: 110px; }
.booking-intro > p:last-of-type { color: var(--muted); max-width: 480px; }
.schedule-summary { display: grid; gap: 12px; margin-top: 28px; }
.schedule-summary article { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.schedule-summary span { display: block; color: var(--pink-deep); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.schedule-summary strong { display: block; font-family: "Playfair Display", serif; font-size: 22px; margin: 3px 0; }
.schedule-summary p { margin: 0; color: var(--muted); font-size: 13px; }
.booking-panel { border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--paper); padding: 34px; box-shadow: 0 22px 65px rgba(76,45,63,.09); }
.booking-panel fieldset { border: 0; padding: 0; margin: 0 0 24px; }
.booking-panel legend, .field-label, .booking-panel label > span { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 800; }
.booking-panel label > span small { color: var(--muted); font-weight: 500; }
.city-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.city-option { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-height: 72px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: white; text-align: left; }
.city-option span { font-weight: 800; }
.city-option small { color: var(--muted); }
.city-option.active { border-color: var(--pink-deep); background: var(--pink-soft); box-shadow: inset 0 0 0 1px var(--pink-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.booking-panel label { display: block; margin-bottom: 16px; }
.booking-panel input:not([type="checkbox"]), .booking-panel select, .booking-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.booking-panel textarea { resize: vertical; }
.booking-panel input:focus, .booking-panel select:focus, .booking-panel textarea:focus { border-color: var(--pink-deep); box-shadow: 0 0 0 3px rgba(185,102,165,.12); }
.time-field { margin-bottom: 18px; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; min-height: 44px; }
.time-slot { min-height: 43px; border: 1px solid var(--line); border-radius: 12px; background: white; font-weight: 700; }
.time-slot:hover:not(:disabled) { border-color: var(--pink-deep); }
.time-slot.selected { background: var(--ink); border-color: var(--ink); color: white; }
.time-slot:disabled { color: #9f969b; background: #eee9ec; cursor: not-allowed; text-decoration: line-through; }
.slot-message { grid-column: 1 / -1; margin: 4px 0; color: var(--muted); font-size: 13px; }
.consent-row { display: flex !important; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--muted); }
.consent-row input { margin-top: 3px; accent-color: var(--pink-deep); }
.consent-row span { margin: 0 !important; font-weight: 500 !important; }
.booking-status { min-height: 24px; margin-bottom: 8px; font-size: 13px; }
.booking-status.error { color: var(--danger); }
.booking-status.success { color: var(--green); }
.booking-submit { width: 100%; }
.booking-success { text-align: center; padding: 22px 4px 10px; }
.success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #e4f3ea; color: var(--green); font-size: 30px; font-weight: 800; }
.booking-success h3 { font-family: "Playfair Display", serif; font-size: 36px; margin-bottom: 18px; }
.booking-success > p:not(.eyebrow) { color: var(--muted); }
.success-details { display: grid; gap: 7px; margin: 18px 0; padding: 18px; border-radius: 15px; background: white; border: 1px solid var(--line); text-align: left; }
.success-details p { display: flex; justify-content: space-between; gap: 20px; margin: 0; font-size: 13px; }
.success-details strong { text-align: right; }
.booking-success .button { width: 100%; margin-top: 8px; }
.booking-success .text-button { margin-top: 10px; }

.closing-section { padding: 0 0 84px; background: white; }
.closing-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--pink-deep), #7f3e72); color: white; overflow: hidden; }
.closing-card .eyebrow { color: #ffd4ef; }
.closing-card h2 { margin-bottom: 0; font-size: clamp(36px, 4vw, 52px); }

footer { border-top: 1px solid var(--line); background: white; }
.footer-grid { min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; font-size: 12px; color: var(--muted); }
.footer-brand img { width: 37px; height: 37px; }
.admin-link { justify-self: end; font-weight: 700; }
.mobile-booking { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }

@media (max-width: 980px) {
  .section-pad { padding: 72px 0; }
  .menu-toggle { display: block; z-index: 3; }
  .main-nav { position: fixed; inset: 0; background: var(--paper); flex-direction: column; justify-content: center; font-size: 23px; transform: translateX(100%); transition: .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-card { min-height: 430px; }
  .hero-logo-shell { width: 410px; }
  .work-card { min-width: calc((100% - 18px) / 2); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 38px; }
  .booking-intro { position: static; }
  .schedule-summary { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 24px 0; }
  .footer-grid p { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1140px); }
  .section-pad { padding: 62px 0; }
  .site-header .brand span { font-size: 15px; }
  h1 { font-size: clamp(49px, 15vw, 65px); }
  h2 { font-size: 40px; }
  .hero { padding-top: 38px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-notes { flex-direction: column; margin-top: 25px; }
  .hero-card { min-height: 340px; }
  .hero-logo-shell { width: 90%; padding: 20px; border-radius: 38px; }
  .floating-badge { font-size: 10px; padding: 9px 12px; }
  .badge-top { right: -1%; top: 6%; }
  .badge-bottom { left: -1%; bottom: 4%; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .work-card { min-width: 100%; }
  .nail-art { height: 285px; }
  .carousel-control { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .schedule-summary { grid-template-columns: 1fr; }
  .booking-panel { padding: 24px 18px; border-radius: 24px; }
  .city-switch, .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .closing-section { padding-bottom: 65px; }
  .closing-card { align-items: flex-start; flex-direction: column; padding: 34px 26px; }
  .closing-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; padding-bottom: 94px; }
  .footer-grid p { grid-column: auto; order: initial; }
  .admin-link { justify-self: center; }
  .mobile-booking { display: flex; position: fixed; z-index: 45; left: 14px; right: 14px; bottom: 14px; min-height: 53px; align-items: center; justify-content: center; border-radius: 999px; background: var(--ink); color: white; font-weight: 800; box-shadow: 0 14px 40px rgba(32,25,30,.28); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
}
