/* ================================
   TOKENS
================================ */
:root {
    --cream:     #FFFDF8;
    --cream-2:   #F7F2EC;
    --pink:      #C4788A;
    --pink-light:#FEF9F2;
    --green:     #7A9478;
    --green-light:#DDE8DA;
    --brown:     #3D2018;
    --brown-mid: #7A4A38;
    --card-bg:   #FFFAF6;
    --border:    #EDD5C8;
    --shadow:    0 4px 24px rgba(61,32,24,0.08);
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

a { text-decoration: none; color: inherit; }

/* ================================
   REVEAL ANIMATIONS
================================ */
.reveal, .reveal-right {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right { transform: translateX(28px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ================================
   BUTTONS
================================ */
.btn-primary {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #b0667a; transform: translateY(-2px); }

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--brown);
    color: var(--brown);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}
.btn-secondary:hover { background: var(--cream-2); }

.btn-large { padding: 18px 44px; font-size: 18px; }

/* ================================
   SECTION COMMON
================================ */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brown);
    margin-bottom: 48px;
}

/* ================================
   NAV
================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(253,248,243,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    min-width: 360px;
}

.nav-logo {
    font-weight: 700;
    font-size: 19px;
    color: var(--brown);
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--brown-mid);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }

.nav-book-btn {
    background: var(--pink) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}
.nav-book-btn:hover { background: #b0667a !important; }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 23px;
    cursor: pointer;
    color: var(--brown);
}

/* ================================
   HERO
================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px 100px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--brown-mid);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--brown);
    margin-bottom: 20px;
}
.hero-title em {
    font-style: italic;
    color: var(--pink);
}

.hero-sub {
    font-size: 17px;
    color: var(--brown-mid);
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge {
    background: none;
    color: var(--pink);
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: none;
}
.badge-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F9DDE3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
}
.badge-icon-wrap svg {
    width: 20px;
    height: 20px;
}
.badge-icon-text {
    font-size: 14px;
    font-weight: 400;
    font-family: inherit;
}

.hero-photo {
    position: relative;
}

.hero-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 32px;
    overflow: hidden;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo-fallback {
    font-size: 81px;
    display: none;
}

.hero-photo-placeholder img { border-radius: 0; }

.hero-float-card {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
    max-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.float-star { color: #F5A623; font-size: 15px; }
.float-text { font-size: 13px; line-height: 1.5; color: var(--brown); font-style: italic; }
.float-name { font-size: 12px; font-weight: 700; color: var(--brown-mid); }

/* ================================
   SERVICES
================================ */
.services-section {
    padding: 96px 0;
    background: var(--cream-2);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-card .price-breakdown {
    flex: 1;
}

.service-card-accent {
    background: var(--card-bg);
    border-color: var(--border);
    color: var(--brown);
}

.service-icon {
    font-size: 37px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 15px;
    color: var(--brown-mid);
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 3em;
}
.service-card-accent .service-desc { color: var(--brown-mid); }

.service-price-main {
    font-size: 41px;
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 20px;
    line-height: 1;
}
.service-price-main span { font-size: 17px; font-weight: 500; color: var(--brown-mid); }
.service-card-accent .service-price-main span { color: var(--brown-mid); }

.price-breakdown {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-card-accent .price-breakdown { border-color: var(--border); }

.price-breakdown li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--brown-mid);
}

.price-breakdown .price {
    font-weight: 700;
    color: var(--brown);
}

.price-breakdown .divider {
    border: none;
    border-top: 1px solid var(--border);
    padding: 0;
    margin: 4px 0;
}
.service-card-accent .price-breakdown .divider { border-color: var(--border); }

/* ─── Holiday info popover ─── */
.holiday-info {
    display: inline;
    position: relative;
}
.holiday-info summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    vertical-align: middle;
    margin-left: 5px;
    user-select: none;
    flex-shrink: 0;
}
.holiday-info summary::-webkit-details-marker { display: none; }
.holiday-info[open] summary { background: var(--brown); }
.holiday-info-body {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    width: 240px;
    box-shadow: 0 8px 24px rgba(61,32,24,0.12);
    z-index: 100;
    font-size: 13px;
    color: var(--brown-mid);
    line-height: 1.5;
}
.holiday-info-body p { margin-bottom: 8px; color: var(--brown); font-weight: 600; }
.holiday-info-body ul { padding-left: 14px; margin: 0; }
.holiday-info-body li { margin-bottom: 3px; }

@media (max-width: 768px) {
    .holiday-info-body {
        position: fixed;
        left: 50%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: calc(100vw - 48px);
        max-width: 320px;
        z-index: 999;
    }
}

.service-book-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    background: var(--pink);
    color: #fff;
    transition: background 0.2s;
}
.service-book-btn:hover { background: #b0667a; }
.service-card-accent .service-book-btn:hover { background: #b0667a; }

.services-note {
    text-align: center;
    font-size: 15px;
    color: var(--brown-mid);
}

/* ================================
   ABOUT
================================ */
.about-section {
    padding: 96px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo-box {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 32px;
    overflow: hidden;
    background: var(--pink-light);
}

.about-rover-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.rover-star {
    font-size: 29px;
    color: #F5A623;
}

.about-rover-badge strong {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.about-rover-badge p {
    font-size: 13px;
    color: var(--brown-mid);
}

.about-text .section-title { margin-bottom: 20px; }

.about-text p {
    font-size: 16px;
    color: var(--brown-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FBF0F2;
    border-radius: 16px;
    padding: 18px 16px;
    font-size: 15px;
    font-weight: 400;
    color: var(--pink);
}

.highlight-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.hi-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E8A0B0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.hi-circle svg { width: 22px; height: 22px; }

/* ================================
   GALLERY
================================ */
.gallery-section {
    padding: 96px 0;
    background: var(--cream-2);
}

.gallery-section .section-title { margin-bottom: 40px; }

.gallery-masonry {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Justified rows — grouped photos */
.gallery-row {
    display: flex;
    gap: 12px;
}

.gallery-item {
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.02); }

/* 4-column masonry — ungrouped tail photos */
.gallery-grid-tail {
    column-count: 3;
    column-gap: 12px;
}
.gallery-grid-tail .gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
}
.gallery-grid-tail .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: transform 0.35s ease, opacity 0.3s;
    opacity: 0;
}
.gallery-grid-tail .gallery-item img.loaded { opacity: 1; }
.gallery-grid-tail .gallery-item:hover img { transform: scale(1.02); }

/* Mobile flat 2-column grid */
.gallery-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.gallery-mobile-grid .gallery-item {
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-mobile-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gallery-hidden { display: none !important; }

.gallery-more-btn {
    background: none;
    border: 2px solid var(--brown);
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gallery-more-btn:hover { background: var(--brown); color: #fff; }

/* ─── Lightbox ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 6, 0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ================================
   REVIEWS
================================ */
.reviews-section {
    padding: 96px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card-large {
    grid-column: span 2;
}

.rc-pink    { background: #F7E8EE; border-color: #EDD0DA; }
.rc-green   { background: #F7F0D8; border-color: #E8D9A0; }
.rc-peach   { background: #FBE9DC; border-color: #F0D0BB; }
.rc-lavender{ background: #EDE8F5; border-color: #D5CCE8; }
.rc-sage    { background: #FBF3D5; border-color: #E5D490; }
.rc-rose    { background: #F5E8E8; border-color: #E2C8C8; }

.review-stars { color: #F5A623; font-size: 17px; letter-spacing: 2px; }

.review-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown-mid);
    flex: 1;
    font-style: italic;
}
.review-card-large .review-text { color: var(--brown-mid); }

.review-footer { margin-top: auto; }

.review-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
}
.review-card-large .review-author strong { color: var(--brown); }

.review-author span {
    font-size: 13px;
    color: var(--brown-mid);
}

/* ================================
   CTA BANNER
================================ */
.cta-section {
    background: var(--pink);
    padding: 80px 48px;
    text-align: center;
}

.cta-inner { max-width: 560px; margin: 0 auto; }

.cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    color: #fff;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--pink);
}
.cta-section .btn-primary:hover { background: var(--cream); }

/* ================================
   FOOTER
================================ */
footer {
    background: #4a2535;
    color: rgba(255,255,255,0.8);
    padding: 48px 56px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-right p { font-size: 13px; }

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        padding: 8px 20px;
        width: 100%;
        min-width: 0;
        z-index: 200;
        box-sizing: border-box;
    }

    body { padding-top: 112px; }

    .hamburger { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; left: 0; right: 0;
        background: var(--cream);
        padding: 16px 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 24px 60px;
        gap: 40px;
    }

    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 14px; }
    .badge { font-size: 14px; }

    .hero-photo-placeholder { aspect-ratio: 1/1; }

    .hero-float-card { left: 0; right: 0; margin: 0 auto; bottom: -16px; }

    .section-inner { padding: 0 24px; }

    .section-title { font-size: 30px; margin-bottom: 32px; }

    .services-section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about-section { padding: 64px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo-box { aspect-ratio: 1/1; }
    .about-rover-badge { right: 0; }

    .gallery-section { padding: 64px 0; }
    .gallery-masonry { gap: 8px; }

    .gallery-item img { border-radius: 10px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .g-tall, .g-wide { grid-column: span 1; grid-row: span 1; height: 160px; }

    .reviews-section { padding: 64px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card-large { grid-column: span 1; }

    .cta-section { padding: 60px 24px; }
    .cta-section h2 { font-size: 30px; }

    footer { padding: 40px 24px; }
    .footer-inner { flex-direction: column; gap: 28px; }

    .about-highlights { grid-template-columns: 1fr; }
}

/* ── About Bio Collapse ── */
.about-bio-wrap { margin-bottom: 8px; }
.about-bio-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
    font-size: 16px;
}
.about-bio-full { color: var(--brown); }
.about-bio-full p { margin: 0 0 10px; line-height: 1.7; font-size: 16px; color: var(--brown); }
.about-bio-full strong { color: var(--pink); font-size: 16px; }
.about-bio-ellipsis { margin: 2px 0 0; color: var(--brown-mid); font-size: 16px; line-height: 1; }
.about-attitude-list { margin: 0 0 10px 0; padding-left: 28px; font-size: 16px; color: var(--brown); line-height: 1.7; }
.about-attitude-list li { margin-bottom: 6px; }
.about-read-more {
    background: none; border: none; padding: 2px 0;
    color: var(--pink); font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    text-decoration: underline;
    display: block;
}
.about-read-more:hover { opacity: 0.75; }

/* ── Mobile: prevent input auto-zoom (iOS Safari zooms when font-size < 16px) ── */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
