/* ============================================
   NAILS — mobile nail tech, Bronx NY
   Liquid glass, white / black / pink
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #ec4899;
    --pink-dark: #be185d;
    --pink-soft: #f9a8d4;
    --ink: #111111;
    --ink-soft: #4b4b4b;
    --line: rgba(17, 17, 17, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* BACKGROUND — white with soft pink smoke + thin lines */
.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: #ffffff;
    overflow: hidden;
}

.smoke {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.smoke-1 {
    width: 620px;
    height: 620px;
    background: var(--pink);
    opacity: 0.10;
    top: -220px;
    right: -160px;
}

.smoke-2 {
    width: 520px;
    height: 520px;
    background: var(--pink-soft);
    opacity: 0.12;
    bottom: -200px;
    left: -150px;
}

.smoke-3 {
    width: 420px;
    height: 420px;
    background: #f7d9ea;
    opacity: 0.13;
    top: 44%;
    left: 48%;
}

.line {
    position: absolute;
    height: 1px;
    border-radius: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.28), transparent);
}

.line-1 { top: 20%; left: -6%; width: 52%; transform: rotate(-8deg); }
.line-2 { top: 58%; right: -6%; width: 46%; transform: rotate(7deg); }
.line-3 { top: 84%; left: 8%; width: 40%; transform: rotate(-4deg); }

/* ============================================
   NAVBAR — LIQUID GLASS (scroll transition)
   ============================================ */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 40px);
    max-width: 1180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 16px rgba(190, 24, 93, 0.06);
    transition:
        top 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        max-width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-radius 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.4s ease,
        padding 0.35s ease,
        border-color 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.32) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.35s ease;
}

/* Top-of-page: transparent, full width, flat */
.nav-transparent {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
    padding: 18px 48px;
}

.nav-transparent::before {
    opacity: 0;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pink);
    display: inline-block;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(236, 72, 153, 0.10);
    color: var(--pink-dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.nav-book-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    border: none;
    padding: 11px 22px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.nav-book-btn:hover {
    background: var(--pink);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 78px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 32px);
    max-width: 420px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(190, 24, 93, 0.15);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 13px 16px;
    border-radius: 14px;
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: rgba(236, 72, 153, 0.10);
    color: var(--pink-dark);
}

/* ============================================
   LAYOUT
   ============================================ */
.page {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
}

.hero-inner {
    max-width: 760px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(236, 72, 153, 0.22);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pink-dark);
    margin-bottom: 28px;
}

.badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.hero-title .accent {
    color: var(--pink);
}

.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 540px;
    margin: 24px auto 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.32);
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.42);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ink);
}

.section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-top: 16px;
}

.block {
    padding: 90px 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 6px 28px rgba(190, 24, 93, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(190, 24, 93, 0.14);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(236, 72, 153, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--pink);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    flex: 1;
}

.service-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.service-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
}

.service-time {
    font-size: 13px;
    color: var(--ink-soft);
}

.svc-book {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
}

.svc-book:hover {
    background: var(--pink);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

/* ============================================
   HORIZONTAL SCROLLING GALLERY (marquee)
   ============================================ */
.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: marquee 45s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 250px;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #fbe9f3, #f9d3e6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 24px rgba(190, 24, 93, 0.10);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 560px) {
    .marquee-item { width: 200px; height: 260px; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fbe9f3, #f9d3e6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 24px rgba(190, 24, 93, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item .placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pink-dark);
    text-align: center;
    padding: 16px;
}

.gallery-item .placeholder svg {
    width: 34px;
    height: 34px;
    opacity: 0.6;
}

.gallery-item .placeholder span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.75;
}

.gallery-tall { aspect-ratio: 1 / 1.3; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 10px;
}

.step-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
}

.step-num svg { width: 28px; height: 28px; }

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta {
    background: var(--ink);
    border-radius: 36px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--pink);
    opacity: 0.4;
    filter: blur(120px);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin: 16px auto 32px;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.cta .btn-primary { position: relative; z-index: 1; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--line);
    padding: 50px 24px 40px;
    text-align: center;
    margin-top: 40px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
}

.footer p {
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 10px;
}

.footer .socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 22px 0;
}

.footer .socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: 0.2s;
}

.footer .socials a:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-2px);
}

.footer .socials svg { width: 19px; height: 19px; }

.footer .copy {
    font-size: 12.5px;
    color: #9b9b9b;
    margin-top: 14px;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.book-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 150px 24px 90px;
    position: relative;
    z-index: 1;
}

.book-head {
    text-align: center;
    margin-bottom: 40px;
}

.steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
}

.step-pill {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    color: #aaa;
    transition: 0.3s;
}

.step-pill.active {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

.step-pill.done {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.step-line {
    width: 28px;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
}
.step-line.done { background: var(--ink); }

.panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 10px 40px rgba(190, 24, 93, 0.08);
}

.panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.book-step { display: none; }
.book-step.active { display: block; animation: fade 0.4s ease; }

@keyframes fade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* location choice */
.loc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.loc-option {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: 0.2s;
}

.loc-option:hover {
    border-color: var(--pink-soft);
    transform: translateY(-3px);
}

.loc-option.selected {
    border-color: var(--pink);
    background: rgba(236, 72, 153, 0.06);
}

.loc-option .loc-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: rgba(236, 72, 153, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
}

.loc-option .loc-icon svg { width: 28px; height: 28px; }

.loc-option h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.loc-option p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* service select */
.svc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.svc-option {
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.svc-option:hover {
    border-color: var(--pink-soft);
    transform: translateY(-2px);
}

.svc-option.selected {
    border-color: var(--pink);
    background: rgba(236, 72, 153, 0.06);
}

.svc-option h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.svc-option .meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink-soft);
}

.svc-option .meta b { color: var(--pink-dark); }

/* calendar */
.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cal-head h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.cal-nav {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: 0.2s;
}
.cal-nav:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.cal-nav svg { width: 16px; height: 16px; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-dow {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #9b9b9b;
    padding: 8px 0;
}

.cal-day {
    aspect-ratio: 1;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: 0.15s;
}

.cal-day:hover:not(:disabled) {
    background: rgba(236, 72, 153, 0.12);
    color: var(--pink-dark);
}

.cal-day.selected {
    background: var(--pink);
    color: #fff;
}

.cal-day:disabled {
    color: #d6d6d6;
    cursor: not-allowed;
    background: transparent;
}

.cal-legend {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--ink-soft);
}
.cal-legend span { display: flex; align-items: center; gap: 6px; }
.cal-legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }

/* time slots */
.slot-date {
    text-align: center;
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 20px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.slot {
    padding: 12px 6px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: 0.15s;
}
.slot:hover { border-color: var(--pink-soft); transform: translateY(-1px); }
.slot.selected { background: var(--pink); color: #fff; border-color: var(--pink); }

.slot.taken {
    background: #f1f1f1;
    color: #b8b8b8;
    border-color: #ececec;
    cursor: not-allowed;
    text-decoration: line-through;
}
.slot.taken:hover { transform: none; border-color: #ececec; }

.slot-empty, .slot-loading {
    text-align: center;
    color: var(--ink-soft);
    padding: 30px 10px;
    font-size: 15px;
}

/* details form */
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--ink);
}
.field input, .field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1.5px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    transition: 0.2s;
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.12);
}
.field textarea { resize: vertical; min-height: 80px; }

.summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.summary .chip {
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.18);
    color: var(--pink-dark);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.book-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.btn-back {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.btn-back:hover { background: #fff; }

.btn-next {
    flex: 2;
    background: var(--pink);
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.btn-next:hover { background: var(--pink-dark); }
.btn-next:disabled { opacity: 0.55; cursor: not-allowed; }

.form-error {
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.25);
    color: var(--pink-dark);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 18px;
}

/* confirmation */
.confirm {
    text-align: center;
    padding: 20px 10px;
}
.confirm-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
}
.confirm-icon svg { width: 38px; height: 38px; }
.confirm h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}
.confirm > p { color: var(--ink-soft); margin-bottom: 24px; }
.confirm-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    text-align: left;
    margin-bottom: 22px;
}

.cal-add { margin-bottom: 24px; }
.cal-add-label {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 12px;
}
.cal-add-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.cal-add-btns .btn { font-size: 14px; padding: 12px 22px; }
.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line);
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span { color: var(--ink-soft); }
.confirm-row b { font-weight: 600; text-align: right; }

/* ============================================
   PAGE HEADER (gallery/sub pages)
   ============================================ */
.page-header {
    text-align: center;
    padding: 150px 24px 50px;
    position: relative;
    z-index: 1;
}
.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.page-header p {
    font-size: 17px;
    color: var(--ink-soft);
    margin-top: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
    .nav-center { display: none; }
    .nav-hamburger { display: flex; }
    .nav-right .nav-book-btn { display: none; }
    .nav-transparent { padding: 16px 22px; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .svc-list { grid-template-columns: 1fr; }
    .slot-grid { grid-template-columns: repeat(3, 1fr); }
    .panel { padding: 22px; }
    .hero { padding-top: 120px; }
    .cta { padding: 50px 24px; }
}
