/* 
   Revive Wellness & Aesthetics - Luxury Spa Design
   Aesthetic: Elegant, Soft, Luxurious
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --rose: #d4a5a5;
    --rose-dark: #c48b8b;
    --blush: #fdf2f2;
    --cream: #faf8f5;
    --charcoal: #2d2d2d;
    --taupe: #8b7355;
    --white: #ffffff;
    --text: #4a4a4a;
    --text-light: #7a7a7a;
    --border: #e8e4e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --radius: 0.5rem;
    --radius-lg: 1rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--text); 
    background: var(--white);
    line-height: 1.8;
    font-weight: 400;
}

h1, h2, h3 { 
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-weight: 600; }

h1 em, h2 em { font-style: italic; color: var(--rose-dark); }

p { margin-bottom: 1rem; color: var(--text-light); font-weight: 300; }
a { color: var(--charcoal); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--rose-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   HEADER
   ============================================ */
header {
    background: var(--white);
    position: sticky;
    top: 60px;
    z-index: 100;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-flex nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose-dark); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 115px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999;
    border-bottom: 2px solid var(--rose);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--rose-dark);
}

.mobile-nav .mobile-phone {
    color: var(--rose-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--rose-dark);
    color: var(--white);
}

.btn-lg { padding: 1.1rem 2.5rem; }

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    padding: 0.875rem 2rem;
    border: 1px solid var(--charcoal);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-text {
    color: var(--rose-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    margin-left: auto;
    width: 50%;
    padding: 4rem;
    background: var(--white);
}

.hero-tagline {
    display: block;
    color: var(--rose-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; }
.bg-cream { background: var(--cream); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: block;
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ============================================
   INTRO
   ============================================ */
.intro-section {
    text-align: center;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-content h2 { margin-bottom: 1.5rem; }

.intro-content p {
    font-size: 1.1rem;
}

/* ============================================
   TREATMENTS
   ============================================ */
.treatments-section {
    background: var(--blush);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.treatment-card {
    background: var(--white);
    text-decoration: none;
    display: block;
    transition: all 0.4s;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.treatment-image {
    overflow: hidden;
    aspect-ratio: 4/5;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-content {
    padding: 1.5rem;
}

.treatment-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.treatment-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.treatment-price {
    color: var(--rose-dark);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.why-content h2 { margin-bottom: 2rem; }

.feature-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
    color: var(--rose-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 2.5rem;
    text-align: center;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.author-treatment {
    font-size: 0.8rem;
    color: var(--rose-dark);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    background: var(--charcoal);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content h2 em { color: var(--rose); }

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--rose);
    color: var(--charcoal);
}

.cta-content .btn-primary:hover {
    background: var(--white);
}

.cta-phone {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cta-phone a {
    color: var(--rose);
    font-weight: 500;
}

/* ============================================
   LOCATION
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 { margin-bottom: 1rem; }

.location-details { margin-top: 2rem; }

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-dark);
    margin-bottom: 0.5rem;
}

.detail-item p {
    margin-bottom: 0;
    color: var(--text);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.page-hero {
    background: var(--blush);
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.contact-section { padding-top: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    margin-top: -3rem;
}

.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.form-header { margin-bottom: 2rem; }
.form-header h2 { margin-bottom: 0.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-dark);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-full { width: 100%; justify-content: center; }

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.sidebar-card {
    background: var(--cream);
    padding: 2rem;
}

.sidebar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-card p { margin-bottom: 0; font-size: 0.95rem; }

.sidebar-card.highlight {
    background: var(--charcoal);
    color: var(--white);
}

.sidebar-card.highlight h4 { color: var(--white); }
.sidebar-card.highlight p { color: rgba(255,255,255,0.8); }

.sidebar-card .phone-cta {
    display: block;
    color: var(--rose);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--rose);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact strong { color: var(--white); font-size: 1.1rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero { flex-direction: column-reverse; min-height: auto; }
    .hero-image { position: relative; width: 100%; height: 250px; }
    .hero-content { width: 100%; padding: 2.5rem 1.5rem; text-align: center; }
    
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header { top: 50px; padding: 0.75rem 0; }
    
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    header .btn-primary { display: none; }
    
    /* UNIQUE HERO: LUXURY SPA ELEGANCE STYLE */
    /* Soft edge image with elegant typography — tuned so headline/CTA are above the fold */
    .hero { 
        flex-direction: column !important; 
        min-height: auto !important;
        background: linear-gradient(180deg, var(--blush) 0%, var(--white) 100%);
    }
    
    /* Content first on mobile */
    .hero-content { 
        order: 1;
        width: 100% !important; 
        padding: 1.5rem 1.5rem 0.75rem !important;
        text-align: center;
        margin-left: 0 !important;
    }

    /* Image with soft rounded edge */
    .hero-image { 
        order: 2;
        position: relative !important; 
        width: calc(100% - 2rem) !important; 
        height: 160px !important;
        margin: 0.75rem auto 0.75rem;
        border-radius: 0 0 100px 100px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .hero-image img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem !important;
        color: var(--rose-dark);
    }
    
    .hero-content h1 { 
        font-size: 1.9rem !important; 
        margin-bottom: 0.75rem !important;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .hero-content h1 em {
        font-style: italic;
        color: var(--rose-dark);
    }
    
    .hero-content p { 
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
        max-width: 100% !important;
        color: var(--text-light);
        line-height: 1.7;
        display: -webkit-box;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .hero-ctas {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .hero-ctas .btn-primary {
        width: 100%;
        justify-content: center;
        background: var(--rose-dark);
        border-radius: 0;
        padding: 1rem 1.5rem;
        letter-spacing: 2px;
        font-size: 0.8rem;
    }
    
    .hero-ctas .btn-text {
        width: 100%;
        justify-content: center;
        color: var(--rose-dark);
        font-style: italic;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1rem;
    }
    
    .hero-ctas .btn-outline {
        display: none;
    }
    
    .treatments-grid { grid-template-columns: 1fr; gap: 1rem; }
    .treatment-card { padding: 1.5rem; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    
    .contact-form-wrap { padding: 1.5rem; margin-top: 0; }
    .contact-grid { margin-top: 0; gap: 1.5rem; }
    
    .cta-full { padding: 3rem 0; }
    .cta-full h2 { font-size: 1.5rem; }
    
    .location-grid { gap: 2rem; }
    .location-info h2 { font-size: 1.35rem; }
    
    .footer { padding: 2.5rem 0 1.5rem; }
}

/* Extra small screens */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content { padding: 1.5rem 1rem; }
}
