:root {
    /* Light palette */
    --bg: #ffffff;
    --bg-soft: #f7f7fb;
    --card: #ffffff;
    --text: #111113;
    --muted: #5a5f6a;
    --brand: #d83a71; /* rose */
    --brand-2: #b86c8d; /* mauve */
    --accent: #8f2f5c; /* deeper rose for accents */
    --gold: #b9972f; /* subtle gold */
    --radius: 16px;
    --shadow: 0 8px 24px rgba(16, 16, 18, 0.08);
    --shadow-soft: 0 6px 18px rgba(16, 16, 18, 0.06);
    --border: rgba(17, 17, 19, 0.08);
    --border-strong: rgba(17, 17, 19, 0.12);
    --hover: rgba(17, 17, 19, 0.05);
    --pink-overlay: rgba(216,58,113,0.8); /* soft rose wash */
    --pink-overlay-strong: rgba(216,58,113,0.36);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1200px 800px at 80% -10%, rgba(216,58,113,0.08), transparent), radial-gradient(900px 600px at -10% 20%, rgba(184,108,141,0.08), transparent), var(--bg);
    line-height: 1.6;
    position:relative;
    isolation:isolate;
}
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background: radial-gradient(1200px 800px at 80% -10%, var(--pink-overlay), transparent), radial-gradient(900px 600px at -10% 20%, var(--pink-overlay), transparent);
        pointer-events: none;
    }


/* Layout */
.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}



.brand span {
    font-weight: 700;
    letter-spacing: .3px;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 18px;
    padding: 8px 10px;
    border-radius: 10px;
}

    nav a:hover {
        color: var(--text);
        background: var(--hover);
    }

/* Hero */
.hero {
    padding: 72px 0 56px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.kicker {
    color: black;
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 12px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.1;
    margin: 10px 0 12px;
}

.lead {
    color: var(--muted);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 55ch;
}

.actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn {
    --b: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--b);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
}

    .btn:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
        transition: .2s ease;
    }

    .btn.secondary {
        background: transparent;
        color: var(--text);
        border: 1px solid var(--border-strong);
    }

        .btn.secondary:hover {
            background: var(--hover);
        }

.hero-card {
    background: linear-gradient(180deg, rgba(17,17,19,0.04), rgba(17,17,19,0.02));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.hero-img {
    aspect-ratio: 4/3;
    width: 100%;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f5f7, #ffffff);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.chip {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(216,58,113,0.08);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid var(--border-strong);
    color: var(--accent);
}

/* Sections */
section {
    padding: 64px 0;
}

.section-title {
    font-size: clamp(26px, 3.6vw, 36px);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--muted);
    margin-bottom: 28px;
}

/* Services */
.cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.card {
    grid-column: span 12;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

    .card h3 {
        margin: 0 0 6px;
        font-size: 20px;
    }

.price {
    color: var(--accent);
    font-weight: 700;
}

.muted {
    color: var(--muted);
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    color: var(--muted);
    font-size: 12px;
    background: #fafbff;
}

/* Price list */
.price-list {
    display: grid;
    gap: 10px;
}

.row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f8f9fb;
    border: 1px solid var(--border);
}

    .row span:last-child {
        color: var(--accent);
        font-weight: 700;
    }

/* Gallery */


.g,
.hero-img {
    overflow: hidden;
    position: relative;
}

    /* ensure images fill cards */
    .g img,
    .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s ease, filter .45s ease;
    }

    /* pink overlay layer on hover */
    .g::before,
    .hero-img::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, var(--pink-overlay-strong), transparent 55%);
        opacity: 0;
        transition: opacity .35s ease;
        pointer-events: none;
        border-radius: inherit;
    }

    /* hover interaction */
    .g:hover img,
    .hero-img:hover img {
        transform: scale(1.04);
        filter: saturate(1.05);
    }

    .g:hover::before,
    .hero-img:hover::before {
        opacity: 1;
    }
/* Gallery - Horizontal Scroll Row on Desktop */
/* Horizontal scroll gallery - full visibility fix */
.gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 16px; /* add left & right padding so first/last images aren’t cut */
    scroll-behavior: smooth;
    scrollbar-width: none; /* hide scrollbar (Firefox) */
}

    .gallery::-webkit-scrollbar {
        display: none; /* hide scrollbar (Chrome, Safari) */
    }

.g {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start; /* aligns left edge cleanly */
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .g img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: inherit;
    }

    .g:hover {
        transform: scale(1.04);
        box-shadow: var(--shadow);
    }

/* Responsive for smaller devices */
@media (max-width: 700px) {
    .gallery {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        padding: 0;
    }

    .g {
        width: 140px;
        height: 140px;
    }
}





/* Booking */
.booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

form {
    background: var(--card);
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--muted);
}

input, select, textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: #ffffff;
    color: var(--text);
    outline: none;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(216,58,113,0.15);
    }

textarea {
    min-height: 110px;
    resize: vertical;
}

.info-card {
    background: linear-gradient(180deg, #ffffff, #ffffff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.hours {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
}

/* Footer */
footer {
    padding: 36px 0 60px;
    border-top: 1px solid var(--border);
    background: #fafafa;
}

.foot {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    margin-left: 8px;
    box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .booking {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 700px) {
    .card {
        grid-column: span 6;
    }

    .g {
        grid-column: span 4;
    }
}

@media (min-width: 1000px) {
    .card {
        grid-column: span 4;
    }

    .g {
        grid-column: span 3;
    }
}