:root {
    --blush:       #f2d9d3;
    --blush-deep:  #e8c4bb;
    --rose:        #d4968a;
    --taupe:       #b8967e;
    --warm-sand:   #c9aa96;
    --nude:        #e8d5cc;
    --cream:       #fdf6f3;
    --white:       #fff;
    --brown-dark:  #4a2e28;
    --brown-mid:   #7a4f43;
    --text-soft:   #8a6b63;
    --text-main:   #3d2520;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 4rem;
    background: rgba(253,246,243,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,150,138,0.18);
    transition: padding .3s;
}
nav .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--brown-dark);
    text-decoration: none;
}
nav .brand span { color: var(--rose); font-style: italic; }
nav ul { list-style: none; display: flex; gap: 2.8rem; }
nav ul a {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
    transition: color .2s;
}
nav ul a:hover { color: var(--rose); }
nav .book-btn {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--rose);
    color: var(--rose);
    background: transparent;
    padding: .55rem 1.5rem;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}
nav .book-btn:hover { background: var(--rose); color: #fff; }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Left petal blob background */
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
    radial-gradient(ellipse 70% 60% at 30% 60%, rgba(242,217,211,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(232,196,187,0.35) 0%, transparent 60%);
    pointer-events: none;
}

.hero-text {
    position: relative; z-index: 2;
    padding: 8rem 3rem 6rem 6rem;
}
.hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--taupe);
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--brown-dark);
    margin-bottom: 1.8rem;
}
.hero-title em {
    font-style: italic;
    color: var(--rose);
}
.hero-sub {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
    max-width: 360px;
    margin-bottom: 2.8rem;
}
.hero-ctas { display: flex; gap: 1.2rem; align-items: center; }
.btn-primary {
    background: var(--rose);
    color: #fff;
    border: none;
    padding: .85rem 2.4rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, transform .2s;
    text-decoration: none;
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-1px); }
.btn-ghost {
    color: var(--text-soft);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: .6rem;
    transition: color .2s;
}
.btn-ghost:hover { color: var(--rose); }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-visual {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
    padding: 6rem 4rem 4rem 2rem;
}
.logo-frame {
    position: relative;
    width: clamp(300px, 38vw, 480px);
    aspect-ratio: 1;
}
/* Decorative ring */
.logo-frame::before {
    content: '';
    position: absolute;
    top: -18px; left: -18px;
    right: -18px; bottom: -18px;
    border-radius: 50%;
    border: 1px solid rgba(212,150,138,0.3);
}
.logo-frame::after {
    content: '';
    position: absolute;
    top: -36px; left: -36px;
    right: -36px; bottom: -36px;
    border-radius: 50%;
    border: 1px dashed rgba(212,150,138,0.15);
}
.logo-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 30px 80px rgba(180,120,100,0.2), 0 6px 20px rgba(180,120,100,0.12);
}

/* Floating sparkle badge */
.badge {
    position: absolute;
    bottom: 10%; right: -20px;
    background: var(--white);
    border: 1px solid var(--blush-deep);
    padding: 1rem 1.3rem;
    box-shadow: 0 8px 30px rgba(180,100,80,0.1);
    text-align: center;
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--rose);
    line-height: 1;
}
.badge .label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: .2rem;
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    opacity: .5; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--taupe);
}
.scroll-hint .line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--taupe), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MARQUEE ── */
.marquee-band {
    overflow: hidden;
    background: var(--rose);
    padding: .75rem 0;
    white-space: nowrap;
}
.marquee-inner {
    display: inline-flex;
    animation: marquee 22s linear infinite;
}
.marquee-inner span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    padding: 0 2.5rem;
}
.marquee-inner span::after {
    content: '✦';
    margin-left: 2.5rem;
    font-style: normal;
    opacity: .7;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}
.about-visual {
    background: linear-gradient(135deg, var(--blush) 0%, var(--nude) 60%, var(--blush-deep) 100%);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 5rem 3rem;
}
.about-visual .big-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14rem, 22vw, 22rem);
    font-weight: 300;
    line-height: 1;
    color: rgba(212,150,138,0.18);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    user-select: none;
}
.about-card {
    background: var(--white);
    border: 1px solid var(--blush);
    padding: 2.5rem 2.8rem;
    position: relative; z-index: 1;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(180,100,80,0.1);
}
.about-card .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--brown-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}
.about-card p {
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

.about-content {
    padding: 6rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .8rem;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: var(--taupe);
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-body {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
    margin-bottom: 2rem;
}

/* Dividers */
.divider {
    display: flex; gap: .5rem; align-items: center;
    margin: 2rem 0;
}
.divider::before, .divider::after {
    content: '';
    flex: 1; height: 1px;
    background: var(--blush-deep);
}
.divider-icon { color: var(--rose); font-size: 1.2rem; opacity: .6; }

/* ── SERVICES ── */
#services {
    padding: 7rem 6rem;
    background: var(--white);
}
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--blush);
}
.service-card {
    background: var(--cream);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: background .3s, transform .2s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--rose);
    transition: width .4s;
}
.service-card:hover { background: var(--white); }
.service-card:hover::before { width: 60%; }
.service-icon {
    font-size: 2.4rem;
    margin-bottom: 1.3rem;
    display: block;
}
.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: .8rem;
}
.service-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-soft);
}

/* ── GALLERY ── */
#gallery {
    padding: 7rem 0;
    background: var(--cream);
}
.gallery-header {
    text-align: center;
    padding: 0 6rem;
    margin-bottom: 3.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 3px;
    padding: 0;
}
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item:first-child {
    grid-row: 1 / 3;
}
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s;
}
.gallery-placeholder:hover { transform: scale(1.03); }
.gallery-item { overflow: hidden; }

/* Gallery color swatches instead of images */
.gp-1 { background: linear-gradient(135deg, #d4968a 0%, #b8967e 50%, #e8c4bb 100%); }
.gp-2 { background: linear-gradient(135deg, #e8c4bb 0%, #f2d9d3 100%); }
.gp-3 { background: linear-gradient(160deg, #c9aa96 0%, #d4968a 100%); }
.gp-4 { background: linear-gradient(135deg, #f2d9d3 0%, #e8d5cc 60%, #d4968a 100%); }
.gp-5 { background: linear-gradient(135deg, #b8967e 0%, #c9aa96 100%); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(74,46,40,0);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s;
}
.gallery-placeholder:hover .gallery-overlay { background: rgba(74,46,40,0.3); }
.gallery-overlay-text {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s;
}
.gallery-placeholder:hover .gallery-overlay-text {
    opacity: 1; transform: translateY(0);
}
.gallery-icon {
    font-size: 5rem;
    opacity: .25;
    color: var(--white);
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: linear-gradient(135deg, var(--blush) 0%, var(--nude) 50%, var(--blush-deep) 100%);
    padding: 7rem 6rem;
}
.testi-header { text-align: center; margin-bottom: 4rem; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.9);
    padding: 2.5rem 2rem;
    position: relative;
}
.testi-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--blush-deep);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: .5rem;
}
.testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}
.testi-author {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
}
.testi-stars {
    color: var(--rose);
    font-size: 0.8rem;
    margin-bottom: .8rem;
    letter-spacing: .1em;
}

/* ── BOOKING ── */
#booking {
    padding: 8rem 6rem;
    background: var(--cream);
    text-align: center;
}
.booking-inner {
    max-width: 620px;
    margin: 0 auto;
}
.booking-inner .section-label { justify-content: center; }
.booking-inner .section-label::before { display: none; }
.booking-inner .section-title { text-align: center; font-size: clamp(2.2rem,4vw,3.8rem); }
.booking-inner .section-body { text-align: center; max-width: 480px; margin: 0 auto 2.5rem; }

.contact-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.contact-pill {
    display: flex; align-items: center; gap: .6rem;
    border: 1px solid var(--blush-deep);
    padding: .7rem 1.6rem;
    font-size: 0.8rem;
    color: var(--brown-mid);
    text-decoration: none;
    transition: all .25s;
}
.contact-pill:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(212,150,138,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: .8rem;
}
.form-row.full { grid-template-columns: 1fr; }
input, select, textarea {
    width: 100%;
    padding: .85rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--blush-deep);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: var(--text-main);
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--rose); }
input::placeholder, textarea::placeholder { color: #bba89e; }
textarea { resize: vertical; min-height: 110px; }
.form-submit {
    margin-top: 1.2rem;
    width: 100%;
}

/* ── FOOTER ── */
footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 6rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--blush);
    margin-bottom: .8rem;
}
.footer-brand em { color: var(--rose); font-style: italic; }
.footer-tagline {
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 260px;
    margin-bottom: 1.5rem;
}
.social-row { display: flex; gap: 1rem; }
.social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all .2s;
}
.social-icon:hover { border-color: var(--rose); color: var(--rose); }
.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush-deep);
    margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
    font-size: 0.82rem;
    font-weight: 300;
    margin-bottom: .65rem;
}
.footer-col ul a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color .2s;
}
.footer-col ul a:hover { color: var(--rose); }
.footer-bottom {
    background: var(--brown-dark);
    text-align: center;
    padding: 1.2rem 6rem;
    font-size: 0.7rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,0.3);
}

/* ── FADE-IN ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    nav ul { display: none; }
    #hero { grid-template-columns: 1fr; padding-top: 80px; }
    .hero-text { padding: 4rem 2rem 2rem; }
    .hero-visual { padding: 2rem; }
    #about { grid-template-columns: 1fr; }
    .about-visual { min-height: 320px; }
    .about-content { padding: 4rem 2rem; }
    #services { padding: 5rem 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: auto; }
    #testimonials { padding: 5rem 2rem; }
    .testi-grid { grid-template-columns: 1fr; }
    #booking { padding: 5rem 2rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 3rem 2rem; grid-template-columns: 1fr; }
    .footer-bottom { padding: 1rem 2rem; }
}