:root {
    --warm-cream: #f7f4f0;
    --soft-sand: #e8e2da;
    --terracotta: #c4a484;
    --terracotta-dark: #a88968;
    --deep-olive: #5c5a4d;
    --charcoal: #3a3832;
    --gold-accent: #d4af37;
    --soft-sage: #9ca88b;
}

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

body {
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    color: var(--charcoal);
    background: linear-gradient(180deg, #f7f4f0 0%, #e8e2da 50%, #f7f4f0 100%);
    position: relative;
    min-height: 100vh;
}

/* Parallax Background Layers */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    will-change: transform;
}

.parallax-layer svg {
    width: 100%;
    height: 100%;
    display: block;
}

.parallax-layer-1 {
    opacity: 0.4;
}

.parallax-layer-2 {
    opacity: 0.35;
}

.parallax-layer-3 {
    opacity: 0.3;
}

.parallax-layer-4 {
    opacity: 0.25;
}

/* Ensure content is above parallax */
nav,
.hero,
.quote-section,
.section,
footer {
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(247, 244, 240, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(58, 56, 50, 0.08);
    padding: 15px 50px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--deep-olive);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 22px;
    letter-spacing: 4px;
}

.logo-sub {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--terracotta);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-olive);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--terracotta);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a484' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--terracotta);
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 500;
    color: var(--deep-olive);
    margin-bottom: 15px;
    letter-spacing: 12px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}

.hero-massage {
    display: block;
    font-size: 0.5em;
    letter-spacing: 8px;
    color: var(--terracotta);
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 6px;
    margin-bottom: 50px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    padding: 18px 50px;
    background: var(--terracotta);
    border: none;
    color: white;
    font-size: 13px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.cta-button:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 164, 132, 0.35);
}

.cta-button-outline {
    background: transparent;
    border: 1.5px solid var(--deep-olive);
    color: var(--deep-olive);
}

.cta-button-outline:hover {
    background: var(--deep-olive);
    color: white;
    box-shadow: 0 15px 40px rgba(92, 90, 77, 0.25);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: gentleFloat 25s infinite ease-in-out;
}

.shape1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 5%;
    background: radial-gradient(circle, rgba(196, 164, 132, 0.08) 0%, transparent 70%);
    animation-delay: 0s;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(156, 168, 139, 0.1) 0%, transparent 70%);
    animation-delay: 8s;
}

.shape3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    animation-delay: 16s;
}

@keyframes gentleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Sections */
.section {
    padding: 120px 50px;
    position: relative;
}

.quote-section {
    background: var(--deep-olive);
    padding: 100px 50px;
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 300;
    font-style: italic;
    color: var(--warm-cream);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-section .quote-author {
    color: var(--terracotta);
    font-size: 14px;
    letter-spacing: 3px;
    margin-top: 30px;
    text-transform: uppercase;
    font-style: normal;
}

/* Services Section */
.services {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--terracotta);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--deep-olive);
    letter-spacing: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--warm-cream);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(58, 56, 50, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-wrapper {
    overflow: hidden;
    position: relative;
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(247, 244, 240, 0.3), transparent);
}

.service-content {
    padding: 35px 30px;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--deep-olive);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.price-tag {
    background: var(--soft-sand);
    padding: 8px 16px;
    font-size: 13px;
    color: var(--deep-olive);
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-tag:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 164, 132, 0.4);
}

.price-tag:hover span {
    color: white;
}

.price-tag span {
    color: var(--terracotta);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--terracotta);
    opacity: 0.3;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: 
        linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 50px 50px;
}

.about-image-placeholder span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--deep-olive);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 16px;
    line-height: 2;
    color: var(--charcoal);
    margin-bottom: 25px;
    opacity: 0.85;
}

.about-content .highlight {
    color: var(--terracotta);
    font-weight: 500;
}

.credentials {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(196, 164, 132, 0.3);
}

.credential {
    text-align: center;
}

.credential-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.credential span {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--deep-olive);
    text-transform: uppercase;
}

/* Reviews Section */
.reviews-section {
    background: 
        radial-gradient(ellipse at 80% 80%, rgba(196, 164, 132, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--soft-sand) 0%, var(--warm-cream) 100%);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.reviews-rating {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 4px;
    position: sticky;
    top: 100px;
}

.rating-stars {
    font-size: 48px;
    color: var(--gold-accent);
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.rating-stars .star {
    display: inline-block;
    animation: starPulse 2s ease-in-out infinite;
}

.rating-stars .star:nth-child(1) { animation-delay: 0s; }
.rating-stars .star:nth-child(2) { animation-delay: 0.1s; }
.rating-stars .star:nth-child(3) { animation-delay: 0.2s; }
.rating-stars .star:nth-child(4) { animation-delay: 0.3s; }
.rating-stars .star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rating-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--deep-olive);
    margin-bottom: 10px;
    font-weight: 400;
}

.rating-count {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 30px;
}

.reviews-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: white;
    padding: 35px;
    border-left: 3px solid var(--terracotta);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(58, 56, 50, 0.1);
}

.review-stars {
    color: var(--gold-accent);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    color: var(--terracotta);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: var(--deep-olive);
    color: var(--warm-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.contact-block p {
    font-size: 15px;
    line-height: 2;
    opacity: 0.85;
}

.contact-block a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block a:hover {
    color: var(--gold-accent);
}

.book-cta {
    text-align: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(247, 244, 240, 0.1);
}

.book-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--warm-cream);
    text-align: center;
    padding-top: 15px;
}

footer p {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--deep-olive);
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .about-image-placeholder {
        height: 350px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-rating {
        position: relative;
        top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 25px;
    }

    nav.scrolled {
        padding: 12px 25px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .menu-toggle {
        display: flex;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--warm-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .section {
        padding: 80px 25px;
    }

    .hero h1 {
        letter-spacing: 6px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 12px;
        width: auto;
        min-width: 200px;
    }

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

    .credentials {
        flex-direction: column;
        gap: 20px;
    }

    .quote-section {
        padding: 80px 25px;
    }
}

