/* ===========================
   NAVA Relax - v3
   Calming spa aesthetic
   =========================== */

:root {
    --green: #4a5a2b;
    --green-dark: #3a4820;
    --green-soft: #5c6e3a;
    --gold: #c4a24e;
    --gold-soft: #d4b86c;
    --cream: #f5f0e6;
    --cream-light: #faf7f0;
    --white: #ffffff;
    --text: #3a3a3a;
    --text-soft: #6b6b6b;
    --text-on-dark: #ede8dc;
    --text-on-dark-soft: rgba(237, 232, 220, 0.7);

    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Nunito', -apple-system, sans-serif;

    --max-width: 1140px;
    --radius: 20px;
    --radius-sm: 12px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.section-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--green);
    margin-bottom: 48px;
    line-height: 1.2;
}
.section-title-light { color: var(--cream-light); }

/* ===========================
   Navigation
   =========================== */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(245, 240, 230, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: box-shadow 0.4s ease;
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(58, 72, 32, 0.06); }

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Nav logo: doubled size */
.nav-logo img {
    height: 100px;
    width: auto;
    padding-top: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: color 0.25s ease;
    letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 26px;
    border-radius: 50px;
    transition: all 0.3s ease !important;
}
.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74, 90, 43, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74, 90, 43, 0.2);
}
.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74, 90, 43, 0.15);
}

/* ===========================
   Hero (with portrait)
   =========================== */

.hero {
    background: var(--cream);
    padding-top: 80px; /* nav height */
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 28px 120px;
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: var(--green);
    line-height: 1.12;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-soft);
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-portrait {
    flex: 0 0 400px;
}

.hero-portrait img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 24px 64px rgba(58, 72, 32, 0.12);
}

/* ===========================
   About (text only, no photo)
   =========================== */

.about {
    background: var(--white);
    padding: 100px 0;
}

.about-inner {
}

.about-body {
}

.about-body p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

/* ===========================
   Gallery (elegant masonry-like grid)
   =========================== */

.gallery {
    background: var(--white);
    padding: 0 28px 100px;
}

.gallery-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Wide items span 2 columns */
.gallery-item-wide {
    grid-column: span 2;
}

/* ===========================
   Waves
   =========================== */

.wave { line-height: 0; overflow: hidden; }
.wave svg { width: 100%; height: 80px; display: block; }
.wave-to-green { background: var(--white); }
.wave-to-cream { background: var(--green); }

/* ===========================
   Massages
   =========================== */

.massages {
    background: var(--green);
    padding: 80px 0 100px;
}

.massage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.massage-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.massage-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.massage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(196, 162, 78, 0.15);
    color: var(--gold-soft);
    margin-bottom: 20px;
}

.massage-card h3 {
    font-size: 1.35rem;
    color: var(--gold-soft);
    margin-bottom: 4px;
    font-weight: 500;
}

.massage-tagline {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-on-dark-soft);
    display: block;
    margin-bottom: 16px;
}

.massage-card p {
    color: var(--text-on-dark-soft);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.massage-ideal { color: var(--text-on-dark) !important; font-size: 0.88rem !important; }
.massage-ideal strong { color: var(--gold-soft); }

/* ===========================
   Pricing
   =========================== */

.pricing {
    background: var(--cream);
    padding: 80px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(74, 90, 43, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Flexbox to push button to bottom */
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(74, 90, 43, 0.08);
}

.pricing-card-featured {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(196, 162, 78, 0.1);
    transform: scale(1.03);
}
.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.pricing-duration {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-divider {
    width: 40px; height: 2px;
    background: var(--gold);
    opacity: 0.3;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.pricing-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-list {
    list-style: none;
    margin-bottom: 28px;
    text-align: center;
    /* Grow to fill available space, pushing button down */
    flex: 1;
}

.pricing-list li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Button locked to bottom */
.pricing-card .btn {
    margin-top: auto;
    align-self: center;
}

/* ===========================
   Contraindications
   =========================== */

.contraindications {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(74, 90, 43, 0.06);
}
.contraindications summary {
    padding: 20px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--green);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.25s;
    list-style: none;
}
.contraindications summary::-webkit-details-marker { display: none; }
.contraindications summary::before {
    content: '+';
    font-size: 1.3rem; font-weight: 300;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.contraindications[open] summary::before { transform: rotate(45deg); }
.contraindications summary:hover { background: var(--cream-light); }
.contraindications ul { padding: 0 28px 24px 68px; list-style: disc; color: var(--text-soft); }
.contraindications li { padding: 3px 0; font-size: 0.88rem; }

/* ===========================
   Contact
   =========================== */

.contact {
    background: var(--green);
    padding: 80px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    color: var(--text-on-dark);
}

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(196, 162, 78, 0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--gold-soft);
}

.contact-item strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-soft);
    margin-bottom: 4px;
    font-weight: 700;
}
.contact-item p { font-size: 1rem; line-height: 1.5; color: var(--text-on-dark); }
.contact-item a { transition: opacity 0.25s; }
.contact-item a:hover { opacity: 0.75; }

/* ===========================
   Booking CTA
   =========================== */

.booking {
    background: var(--cream);
    padding: 100px 0 120px;
}

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.booking-visual img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 48px rgba(58, 72, 32, 0.1);
}

.booking-content h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--green);
    margin-bottom: 16px;
}
.booking-content > p {
    color: var(--text-soft);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.7;
}

.booking-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: var(--white);
    border: 2px solid rgba(74, 90, 43, 0.12);
    border-radius: 16px;
    padding: 20px 28px;
    min-width: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-booking:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(74, 90, 43, 0.12);
}

.btn-booking-featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(196, 162, 78, 0.06), rgba(196, 162, 78, 0.02));
}
.btn-booking-featured:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(196, 162, 78, 0.15);
}

.booking-btn-time {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green);
}
.booking-btn-price {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}
.booking-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    opacity: 0.7;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--green-dark);
    padding: 36px 28px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo img {
    height: 48px;
    width: auto;
}
.footer-info {
    text-align: right;
    color: var(--text-on-dark-soft);
    font-size: 0.82rem;
}
.footer-info p { margin-bottom: 2px; }

/* ===========================
   Scroll Reveal
   =========================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.massage-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.massage-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.massage-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 80px 28px 80px;
        gap: 48px;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-portrait { flex: 0 0 auto; max-width: 320px; }

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

    .gallery-inner {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 220px 220px;
    }

    .massage-grid { grid-template-columns: 1fr; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto; margin-right: auto;
        margin-bottom: 48px;
    }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-4px); }

    .contact-grid { grid-template-columns: 1fr; }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-visual { max-width: 500px; }
}

@media (max-width: 768px) {
    .nav-inner { height: 72px; }
    .nav-logo img { height: 72px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: rgba(245, 240, 230, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 28px;
        gap: 0;
        box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(74, 90, 43, 0.06);
    }
    .nav-cta { text-align: center; margin-top: 8px; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-inner { padding: 60px 28px 60px; }

    .about { padding: 64px 0; }

    .gallery-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item-wide { grid-column: span 1; }
    .gallery-inner { gap: 12px; }
    .gallery-item img { height: 220px; }

    .wave svg { height: 50px; }

    .massages, .contact { padding: 60px 0 80px; }
    .pricing, .booking { padding: 60px 0 80px; }
    .section-title { margin-bottom: 36px; }

    .booking-buttons { flex-direction: column; align-items: stretch; }
    .btn-booking { flex-direction: row; justify-content: space-between; }

    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-info { text-align: center; }
}
