:root {
    --accent: #ff6faa;
    --accent-2: #8ec5ff;
    --muted: #6d6d76;
    --bg: #f6ebe7;
    --nav-bg: #fcd6e3;
    /* rose-gold navbar background requested */
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    margin: 0;
    background: #F7F2EC;
    color: #f9beb8;
    /* reserve space for fixed header */
    padding-top: 64px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem
}

.BRTitle {
    color: #83394a;
}

/* Header */
.site-header {
    padding: 0.05rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    background: var(--nav-bg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
    height: 7%;
    color: #9e182b;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #9e182b;
    text-decoration: none
}

.site-nav {
    display: flex;
    align-items: center
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 1.25rem;
    margin-right: 0.5rem
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem
}

.nav-list a {
    text-decoration: none;
    color: inherit;
    padding: 0.35rem 0.5rem;
    border-radius: 6px
}

.nav-list a:hover {
    background: rgba(255, 255, 255, 0.6)
}

/* Hero */
.hero {
    padding: 2.25rem 0
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: center
}

.hero h1 {
    font-size: 2rem;
    margin: 0 0 0.5rem
}

.lead {
    color: #FCD6E3;
    font-weight: 700;
    margin: 0 0 1rem;
}

.hero-actions .btn {
    margin-right: 0.5rem
}

.btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: #eeaac3;
    color: white;
    border: 0;
    text-decoration: none
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: inherit
}

/* Rose-gold gradient button (used for "View Gallery") */
.btn-rose {
    background: linear-gradient(90deg, #b76e79, #d9b99f);
    color: white;
    border: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(59, 42, 58, 0.06)
}

.section {
    padding: 2rem 0
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem
}

.service {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(59, 42, 58, 0.05);
    position: relative;
    cursor: pointer;
    overflow: visible
}

.service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem
}

.service-title {
    display: flex;
    flex-direction: column;
    color: #83394a;
}

.service-price {
    font-weight: 700;
    color: #EEAAC3;
    margin-top: 6px
}


.service-body h5 {
    margin: 0.6rem 0 0.25rem;
    font-size: 0.95rem;
}

.service-body p {
    color: #eeaac3;
}

.extras {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem
}

.extras li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
    font-size: 0.95rem
}

.extra-price {
    color: var(--muted);
    margin-left: 0.5rem
}

.service .toggle-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    font-size: 20px;
    color: var(--muted);
    transition: transform 0.22s ease
}

.service h3 {
    margin: 0
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.18s ease
}

.service.expanded {
    padding-bottom: 2.5rem
}

.service.expanded .service-body {
    max-height: 260px;
    padding-top: 0.75rem
}

.service.expanded .toggle-arrow {
    transform: translateX(-50%) rotate(180deg)
}

.service:focus {
    outline: 2px solid rgba(255, 106, 170, 0.2);
    outline-offset: 4px
}

.service .btn {
    margin-top: 0.5rem
}

.card h4 {
    color: #4A202A;
}

.cardP {
    color: #FCD6E3;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem
}

/* 6-grid layout for add-ons */
.six-grid {
    grid-template-columns: repeat(6, minmax(110px, 1fr));
}

.three-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
}

@media(max-width:1100px) {
    .six-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }
}

@media(max-width:700px) {
    .six-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .three-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

.card {
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03)
}

.price {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: #EEAAC3;
}

.muted {
    color: var(--muted)
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem
}

.gallery-item {
    background: white;
    border: 0;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 60
}

.lightbox.hidden {
    display: none
}

.lb-content {
    max-width: 90%;
    max-height: 90%;
    padding: 1rem
}

.lb-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px
}

.lb-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: #fff;
    border-radius: 999px;
    border: 0;
    padding: 0.5rem;
    cursor: pointer
}

/* Booking form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(59, 42, 58, 0.06)
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem
}

label {
    display: block;
    font-size: 0.95rem;
    color: #333
}

input,
select,
textarea {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #ececf2
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem
}

.note {
    color: var(--muted);
    font-size: 0.9rem
}

.form-message {
    min-height: 1.2rem;
    margin-top: 0.4rem
}

.form-message.info {
    color: #0b66ff
}

.form-message.success {
    color: green
}

.form-message.error {
    color: #d6455a
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 12, 0.35)
}

.modal-inner {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    max-width: 420px;
    position: relative
}

.modal.hidden {
    display: none
}

/* Policies toggle */
.policies-wrap {
    margin-bottom: 1rem
}

.policies-toggle {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer
}

.policies-content {
    background: #fff;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04)
}

.policies-content.hidden {
    display: none
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: 0;
    background: none;
    font-size: 1rem
}

/* Testimonials */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem
}

blockquote {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin: 0
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem
}

/* Footer */
.site-footer {
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03)
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.socials a {
    color: inherit;
    text-decoration: none;
    margin: 0 0.25rem
}

@media (max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .nav-toggle {
        display: inline-block
    }

    .nav-list {
        display: none;
        position: absolute;
        right: 1rem;
        top: 56px;
        background: white;
        padding: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08)
    }

    .nav-list.open {
        display: flex;
        flex-direction: column
    }
}

@media (max-width:700px) {
    .form-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 1.5rem
    }
}

/* Aftercare tips */
.aftercare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem
}

.aftercare-grid .tip {
    background: white;
    padding: 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03)
}

/* About section */
.about-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.25rem;
    align-items: start
}

.about-portrait {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06)
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem
}

.portfolio-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px
}

.about-right p {
    line-height: 1.5;
    color: #333;
    margin: 0 0 0.75rem
}

@media(max-width:900px) {
    .about-inner {
        grid-template-columns: 1fr
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* Section heading style requested by user */
.section-title {
    color: #9e182b;
}