:root {
    --rose: #c8847a;
    --rose-lt: #e8b4a8;
    --blush: #f5ede8;
    --champagne: #faf6f2;
    --charcoal: #1a1a1a;
    --mid: #4a4a4a;
    --light: #888;
    --white: #ffffff;
    --gold: #b89b6e;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 132, 122, 0.15);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal) !important;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--rose), var(--rose-lt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}
.brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--light);
    display: block;
    font-weight: 400;
}
.nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--mid) !important;
    padding: 6px 14px !important;
    transition: color 0.25s;
}
.nav-link:hover {
    color: var(--rose) !important;
}
.btn-book-nav {
    background: var(--charcoal);
    color: #fff !important;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    padding: 10px 22px !important;
    border-radius: 0;
    transition: background 0.25s;
}
.btn-book-nav:hover {
    background: var(--rose) !important;
}

/* HERO ─ cream bg left, photo right with left-edge fade (matches Image 1) */
.hero {
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    background: #f5ede8; /* cream/blush base — shows on left */
    display: flex;
    align-items: center;
}

/* ── Right-side photo panel ── */
.hero-img-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%; /* photo occupies right 58% */
    z-index: 1;
}
.hero-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
/* Fade photo INTO the cream background on its left edge */
.hero-img-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        #f5ede8 0%,
        /* solid cream — blends into page bg */ rgba(245, 237, 232, 0.75) 18%,
        rgba(245, 237, 232, 0.25) 36%,
        transparent 55%
    );
}

/* ── Text content ── */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 90px 0;
}
.hero-eyebrow {
    font-size: 0.63rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: 16px;
}
.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 400;
    line-height: 1.02;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-title em {
    font-style: italic;
    color: var(--rose);
    font-weight: 400;
}
.hero-subtitle {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.78;
    max-width: 310px;
    margin-bottom: 36px;
    font-weight: 300;
}
.btn-primary-custom {
    background: var(--charcoal);
    color: #fff;
    font-size: 0.67rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 34px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition:
        background 0.25s,
        transform 0.2s;
}
.btn-primary-custom:hover {
    background: var(--rose);
    color: #fff;
    transform: translateY(-2px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 0.69rem;
    color: var(--light);
    letter-spacing: 0.08em;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .hero {
        min-height: 75vh;
    }
    .hero-img-panel {
        width: 65%;
    }
}
@media (max-width: 600px) {
    .hero {
        min-height: 100svh;
        background: #f5ede8;
    }
    .hero-img-panel {
        width: 100%;
        opacity: 0.35;
    }
    .hero-img-panel::before {
        background: rgba(245, 237, 232, 0.6);
    }
}

/* SECTIONS */
.section-label {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: 14px;
}
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
}
.section-divider {
    width: 40px;
    height: 1px;
    background: var(--rose);
    margin: 20px auto;
}

/* SERVICES */
.services-section {
    background: var(--champagne);
    padding: 100px 0;
}
.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(200, 132, 122, 0.12);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--rose-lt));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(200, 132, 122, 0.15);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--rose);
}
.service-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.service-desc {
    font-size: 0.8rem;
    color: var(--light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.service-link:hover {
    gap: 10px;
    color: var(--rose);
}

/* ABOUT */
.about-section {
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}
.about-img-wrap {
    position: relative;
    height: 580px;
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.about-img-wrap:hover img {
    transform: scale(1.03);
}
.about-img-wrap::before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    width: 55%;
    height: 55%;
    border: 2px solid var(--rose-lt);
    z-index: 0;
    pointer-events: none;
}
.about-badge-float {
    position: absolute;
    bottom: 32px;
    right: -20px;
    background: var(--charcoal);
    color: #fff;
    padding: 22px 28px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.about-badge-float strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--rose-lt);
    line-height: 1;
}
.about-badge-float span {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}
.about-content {
    padding-left: 56px;
}
.about-content .about-lead {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 32px;
    font-weight: 300;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200, 132, 122, 0.12);
}
.about-feature:first-of-type {
    border-top: 1px solid rgba(200, 132, 122, 0.12);
}
.about-feature-icon {
    width: 46px;
    height: 46px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 1rem;
    flex-shrink: 0;
}
.about-feature-text h6 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.about-feature-text p {
    font-size: 0.78rem;
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}
.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 132, 122, 0.12);
}
.about-stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--rose);
    line-height: 1;
    display: block;
}
.about-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--light);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}
.btn-rose {
    background: var(--rose);
    color: #fff;
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--rose);
    transition:
        background 0.25s,
        color 0.25s;
    margin-top: 32px;
}
.btn-rose:hover {
    background: transparent;
    color: var(--rose);
}
.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--charcoal);
    transition:
        background 0.25s,
        color 0.25s;
    margin-top: 32px;
    margin-left: 14px;
}
.btn-outline-dark:hover {
    background: var(--charcoal);
    color: #fff;
}
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    .about-badge-float {
        right: 16px;
    }
    .about-stats {
        gap: 24px;
    }
}

/* GALLERY */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item:first-child {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0);
    transition: background 0.35s;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 22px;
}
.gallery-item:hover .gallery-overlay {
    background: rgba(26, 26, 26, 0.48);
}
.gallery-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    background: var(--rose);
    padding: 8px 16px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--blush);
    padding: 100px 0;
}
.testimonial-card {
    background: #fff;
    padding: 44px 40px;
    border: 1px solid rgba(200, 132, 122, 0.1);
    text-align: center;
}
.stars {
    color: var(--rose);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 24px;
}
.testimonial-author {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
}

/* COMING SOON */
.coming-soon-section {
    background: var(--champagne);
    padding: 100px 0;
}
.cs-card {
    background: #fff;
    border: 1px solid rgba(200, 132, 122, 0.15);
    padding: 70px 50px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.cs-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--rose-lt), var(--gold));
}
.cs-icon {
    width: 80px;
    height: 80px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2rem;
    color: var(--rose);
}
.cs-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.cs-card h2 em {
    font-style: italic;
    color: var(--rose);
}
.cs-card .lead {
    font-size: 0.85rem;
    color: var(--light);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cs-divider {
    width: 50px;
    height: 1px;
    background: var(--rose-lt);
    margin: 28px auto;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: var(--champagne);
    border: 1px solid rgba(200, 132, 122, 0.12);
    text-decoration: none;
    transition:
        transform 0.2s,
        border-color 0.2s;
}
.contact-method:hover {
    transform: translateX(4px);
    border-color: var(--rose);
}
.contact-method-icon {
    width: 44px;
    height: 44px;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-method-info {
    text-align: left;
}
.contact-method-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light);
    font-weight: 600;
    display: block;
}
.contact-method-value {
    font-size: 0.92rem;
    color: var(--charcoal);
    font-weight: 500;
}
.notify-input-wrap {
    display: flex;
    gap: 0;
    margin-top: 28px;
}
.notify-input-wrap input {
    flex: 1;
    border: 1px solid rgba(200, 132, 122, 0.3);
    border-right: none;
    padding: 14px 18px;
    font-size: 0.8rem;
    font-family: "Montserrat", sans-serif;
    outline: none;
    background: #fff;
}
.notify-input-wrap input:focus {
    border-color: var(--rose);
}
.notify-input-wrap button {
    background: var(--rose);
    color: #fff;
    border: none;
    padding: 14px 22px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background 0.25s;
}
.notify-input-wrap button:hover {
    background: var(--charcoal);
}

/* FOOTER */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.55);
    padding: 70px 0 30px;
}
.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}
.footer-heading {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--rose-lt);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    margin-bottom: 12px;
}
.footer-contact-item i {
    color: var(--rose-lt);
    width: 16px;
    margin-top: 2px;
}
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition:
        background 0.2s,
        color 0.2s;
}
.social-btn:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom span {
    font-size: 0.72rem;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.72rem;
}
.footer-bottom a:hover {
    color: var(--rose-lt);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }
    .hero-bg {
        background:
            linear-gradient(180deg, rgba(250, 246, 242, 0.97) 55%, rgba(250, 246, 242, 0.6) 100%),
            url("https://images.unsplash.com/photo-1718720410628-6aa1b860ea78?w=800&q=80") center top / cover;
    }
    .about-dark {
        padding: 60px 30px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .gallery-item:first-child {
        grid-row: span 1;
    }
    .cs-card {
        padding: 50px 28px;
    }
    .notify-input-wrap {
        flex-direction: column;
    }
    .notify-input-wrap input {
        border-right: 1px solid rgba(200, 132, 122, 0.3);
    }
}
