:root {
    --bg-cream: #F1EDE1;
    --bg-white: #FFFFFF;
    --bg-beige: #D5C7B4;
    --accent-terracotta: #6C2520;
    --accent-sage: #A0BB75;
    --text-charcoal: #382A24;
    --text-light: #7A716A;
    --primary-black: #2F211C;
    --border-radius-lg: 40px;
    --border-radius-md: 24px;
    --border-radius-sm: 12px;
    --border-radius-pill: 50px;
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 45px rgba(108, 37, 32, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent-terracotta);
    outline-offset: 4px;
}





body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Premium Fine-Art Paper Texture */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.035;
    pointer-events: none;
    z-index: 999998;
    mix-blend-mode: multiply;
}

h1, h2, h3, .logo, .price {
    font-family: var(--font-heading);
    color: var(--primary-black);
    font-weight: 500;
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

/* Animations */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.active {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--bg-cream);
    z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.preloader-logo { 
    font-size: 8rem; 
    opacity: 0; 
    animation: fadeUpLogo 1.5s forwards 0.3s; 
    color: var(--accent-terracotta); 
}
.preloader-hidden { 
    opacity: 0 !important; 
    pointer-events: none; 
    transform: translateY(-100%); 
}
@keyframes fadeUpLogo {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Cursor */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 1px solid var(--accent-terracotta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
    mix-blend-mode: difference;
}
.custom-cursor.cursor-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 37, 32, 0.15); 
    border-color: transparent;
}

/* Ambient Player */
.ambient-player {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 1000;
}
.ambient-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 12px 20px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: var(--text-charcoal);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.ambient-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.ambient-toggle.playing {
    background: var(--text-charcoal);
    color: var(--bg-cream);
}
@media (max-width: 768px) {
    .ambient-player {
        bottom: 6.5rem;
        left: 1.5rem;
    }
    .ambient-text { display: none; }
    .ambient-toggle { padding: 12px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
}

/* Handwritten Typography */
.accent-script {
    font-family: 'Pinyon Script', cursive;
    color: var(--accent-terracotta);
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: -15px;
    font-weight: 400;
}

/* Buttons */
button, .btn-solid, .btn-outline {
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    padding: 12px 28px;
    border-radius: var(--border-radius-pill);
}

.btn-outline:hover {
    background: var(--accent-terracotta);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Animated Nav Button */
.nav-book-btn {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(108, 37, 32, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(108, 37, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 37, 32, 0); }
}

.btn-solid {
    background: var(--accent-terracotta);
    border: none;
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: var(--border-radius-pill);
    font-size: 1.05rem;
}

.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.black-btn {
    background: var(--primary-black);
    color: var(--bg-white);
}

.black-btn:hover {
    background: var(--text-charcoal);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Nav */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 2.8rem;
    color: var(--accent-terracotta);
    line-height: 1;
}

.nav-links a {
    margin: 0 2rem;
    font-weight: 400;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
}

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

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

/* Hero Section */
.hero-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Split Hero Container (Clean Luxury Card) */
.hero-split-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    min-height: 75vh;
    padding-top: 2rem;
}

.hero-split-content {
    flex: 0.9;
    background: var(--primary-black);
    padding: 5rem 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 40px 80px rgba(47, 33, 28, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    color: var(--bg-cream);
}

.hero-split-content h1 {
    color: var(--bg-white);
}

.hero-split-content .hero-offer-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-split-content .hero-limited {
    color: rgba(255, 255, 255, 0.5) !important;
}

.hero-split-content .btn-solid {
    background: var(--bg-cream);
    color: var(--primary-black);
}

.hero-split-content .btn-solid:hover {
    background: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.15);
}

.hero-split-content .offer-badge {
    color: var(--bg-cream);
    opacity: 0.9;
}

.hero-split-content .offer-badge::before,
.hero-split-content .offer-badge::after {
    background: rgba(255, 255, 255, 0.3);
}

.hero-split-image-wrapper {
    flex: 1.3;
    height: 85vh;
    min-height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.hero-split-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: cinematicBreathe 25s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes cinematicBreathe {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.12) rotate(1deg); }
}

@media (max-width: 900px) {
    .hero-split-container {
        flex-direction: column;
        gap: 3rem;
        margin-top: 1rem;
    }
    .hero-split-content { 
        margin-right: 0; 
        margin-bottom: 0;
        padding: 4rem 2rem;
    }
    .hero-split-content h1, 
    .hero-split-content p, 
    .hero-split-content div { text-align: center !important; margin-left: auto; margin-right: auto; }
    .hero-split-image-wrapper { width: 100%; height: 50vh; min-height: 400px; z-index: 1;}
}

.offer-badge.left-aligned::before { display: none; }
.offer-badge.left-aligned::after { left: 105%; width: 50px; right: auto; }
@media (max-width: 900px) {
    .offer-badge.left-aligned::before { display: block; left: -60px; }
    .offer-badge.left-aligned::after { left: auto; right: -60px; }
}

.offer-badge {
    display: inline-block;
    color: var(--text-charcoal);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0.8;
}

.offer-badge::before,
.offer-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(56, 42, 36, 0.25);
}

.offer-badge::before { left: -60px; }
.offer-badge::after { right: -60px; }

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 1rem;
}

.hero-offer-desc {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-price {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--accent-terracotta);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-limited {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--text-charcoal);
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(56, 42, 36, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-charcoal);
    animation: scrollDownDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDownDrop {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Value Props */
.value-props {
    padding: 10rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.prop-item {
    background: transparent;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.prop-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    color: var(--accent-sage);
}

.prop-item .icon i {
    width: 36px;
    height: 36px;
}

.prop-item h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.prop-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Premium Horizontal Divider */
.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 300px;
    margin: 0 auto;
    opacity: 0.6;
}
.premium-divider::before,
.premium-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(56, 42, 36, 0.25);
}
.premium-divider span {
    padding: 0 1.5rem;
    color: var(--accent-terracotta);
    font-size: 1.4rem;
}

/* Silver Shimmer Text Animation */
.text-silver-shimmer {
    background: linear-gradient(90deg, #A8A9AD 0%, #FFFFFF 50%, #A8A9AD 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: silverShimmer 4s linear infinite;
}
@keyframes silverShimmer {
    to { background-position: 200% center; }
}

/* Editorial Lookbook Services */
.services-section {
    padding: 10rem 2rem 12rem;
    max-width: 1400px;
    margin: 0 auto;
}

.lookbook-container {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.lookbook-row {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.lookbook-row.reverse {
    flex-direction: row-reverse;
}

.lookbook-img-wrapper {
    flex: 1.2;
    height: 650px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.lookbook-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) sepia(20%) contrast(90%);
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1), filter 2.5s ease;
}

.lookbook-row:hover .lookbook-img {
    transform: scale(1.05);
    filter: grayscale(0%) sepia(0%) contrast(105%);
}

.lookbook-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.lookbook-number {
    position: absolute;
    top: -4rem;
    left: 0;
    font-size: 10rem;
    color: var(--accent-terracotta);
    opacity: 0.1;
    line-height: 1;
    z-index: -1;
}

.lookbook-content h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-charcoal);
}

.lookbook-content .service-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.lookbook-footer {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.lookbook-footer .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-terracotta);
}

@media (max-width: 900px) {
    .lookbook-row, .lookbook-row.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .lookbook-img-wrapper {
        height: 400px;
        width: 100%;
    }
    .lookbook-content {
        padding: 0;
    }
    .lookbook-number {
        top: -4rem;
        left: -1rem;
        font-size: 6rem;
    }
}

/* Editorial Testimonials */
.testimonials-section {
    padding: 10rem 2rem;
    background: var(--bg-cream);
    position: relative;
}

.editorial-quote-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-slide {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.quote-slide.active-quote {
    opacity: 1;
    pointer-events: all;
}

.quote-monogram {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--accent-terracotta);
    margin: 0 auto 2.5rem;
    width: 65px; height: 65px;
    border: 1px solid rgba(108, 37, 32, 0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.2;
    font-style: italic;
    color: var(--text-charcoal);
    margin-bottom: 3rem;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.quote-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.quote-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(47, 33, 28, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
}

.quote-dot.active-dot {
    background: var(--accent-terracotta);
    transform: scale(1.5);
}

/* Contact Section */
.contact-section {
    padding: 10rem 2rem 12rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    min-height: 650px;
}

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
}

.contact-subtext {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .input-group {
    display: flex;
    gap: 1.5rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-cream);
    color: var(--text-charcoal);
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--accent-terracotta);
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

/* Booking Wizard */
.booking-wizard {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 480px;
}
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}
.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}
.progress-step {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    transition: var(--transition-smooth);
}
.progress-step.active {
    color: var(--accent-terracotta);
}
.wizard-panel {
    display: none;
    animation: fadeSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.wizard-panel.active-panel {
    display: block;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
    .service-selection-grid { grid-template-columns: 1fr; }
}
.service-radio input[type="radio"] {
    display: none;
}
.radio-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}
.service-radio input[type="radio"]:checked + .radio-card {
    border-color: var(--accent-terracotta);
    background: rgba(108, 37, 32, 0.05);
    box-shadow: 0 10px 20px rgba(108, 37, 32, 0.08);
}
.radio-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 0.2rem;
}
.radio-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}
.wizard-next, .wizard-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-map {
    flex: 1;
    position: relative;
    min-height: 400px;
    background: var(--bg-beige);
    overflow: hidden;
}

.contact-map iframe {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--bg-white);
    padding: 6rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 3.2rem;
    color: var(--accent-terracotta);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--bg-white);
    background: rgba(255,255,255,0.1);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent-terracotta);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links a, .footer-links p {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.footer-contact-info i {
    width: 18px; height: 18px;
    color: var(--accent-terracotta);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .logo { font-size: 2.6rem; }
    .footer-logo { font-size: 3rem; }
    .wipe-logo { font-size: 4rem; text-align: center; }
    .nav-links { display: none; }
    .hero-content { padding: 3rem 2rem; }
    .hero-content h1 { font-size: 3rem; }
    .contact-form .input-group { flex-direction: column; gap: 1.5rem; }
    .contact-info { padding: 3rem 2rem; }
    .quote-text { font-size: 2.2rem; }
    .editorial-quote-container { min-height: 320px; }
}

/* Transformation Slider */
.transformation-section {
    padding: 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
}
.slider-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.slider-after {
    width: 50%;
    overflow: hidden;
}
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 44px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 5;
}
.slider-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--bg-white);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.slider-button {
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}
.slider-label {
    position: absolute;
    top: 2rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-charcoal);
}
.label-before { right: 2rem; }
.label-after { left: 2rem; }


/* Gift Card Section */
.gift-section {
    padding: 10rem 2rem;
    background: var(--bg-beige);
    overflow: hidden;
}
.gift-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8rem;
}
.gift-content {
    flex: 1;
}
.gift-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.gift-content p {
    font-size: 1.15rem;
    color: var(--text-charcoal);
    margin-bottom: 3rem;
    line-height: 1.8;
}
.gift-card-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1500px;
}
.gift-card-3d {
    width: 400px;
    height: 250px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-black) 0%, #4a362d 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: pointer;
}
.gift-card-inner {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateZ(30px);
}
.gift-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--bg-cream);
}
.gift-text {
    font-family: var(--font-body);
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    letter-spacing: 4px;
    font-size: 0.9rem;
    align-self: flex-end;
}
.gift-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #E0C097 0%, #a88137 100%);
    border-radius: 6px;
    opacity: 0.9;
    margin-top: auto;
    margin-bottom: 1.5rem;
}
.gift-shine {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: translateZ(1px);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    border-radius: 20px;
}

/* Team Section */
.team-section {
    padding: 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.team-grid {
    display: flex;
    justify-content: center;
    gap: 8rem;
}
.team-card {
    text-align: center;
    max-width: 350px;
}
.team-img-wrapper {
    overflow: hidden;
    margin-bottom: 2.5rem;
    border-radius: 250px 250px 0 0; /* Premium arch shape */
    box-shadow: var(--shadow-soft);
    aspect-ratio: 3/4;
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    transition: transform 2s ease, filter 2s ease;
}
.team-card:hover .team-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}
.team-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-charcoal);
}
.team-card p {
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* Expansion Gallery Boutique */
.expansion-gallery {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    height: 600px;
    gap: 1.5rem;
}

.expansion-card {
    flex: 1;
    border-radius: var(--border-radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: grayscale(80%) brightness(0.6);
}

.expansion-card.active {
    flex: 4;
    cursor: default;
    filter: grayscale(0%) brightness(1);
}

.expansion-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.expansion-card.active .expansion-overlay {
    opacity: 1;
}

.expansion-content {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 3rem;
    color: var(--bg-cream);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.expansion-card.active .expansion-content {
    bottom: 0;
    opacity: 1;
}

.expansion-header {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.expansion-header h4 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
    margin: 0;
    color: var(--bg-white);
}

.expansion-header .price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-terracotta);
}

.expansion-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 2rem;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 3rem 0;
}
.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.faq-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Split Team Gift Configuration */
.gift-team-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.team-half { flex: 1.2; }
.gift-half { flex: 0.8; }
@media (max-width: 1100px) {
    .gift-team-split { flex-direction: column; }
    .team-half, .gift-half { width: 100%; }
}

/* Dark Booking Theme Overrides */
.dark-booking.contact-section {
    background: var(--primary-black) !important;
}
.dark-booking h2, .dark-booking .contact-subtext {
    color: var(--bg-cream) !important;
}
.dark-booking .booking-wizard {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}
.dark-booking .progress-step {
    color: rgba(255,255,255,0.4);
    border-bottom-color: rgba(255,255,255,0.1);
}
.dark-booking .progress-step.active {
    color: var(--bg-cream);
    border-bottom-color: var(--bg-cream);
}
.dark-booking h3, .dark-booking h4, .dark-booking p {
    color: var(--bg-cream) !important;
}
.dark-booking .radio-card {
    border-color: rgba(255,255,255,0.1);
    background: transparent;
}
.dark-booking .service-radio input:checked + .radio-card {
    border-color: var(--bg-cream);
    background: rgba(255,255,255,0.05);
}
.dark-booking .contact-form input,
.dark-booking .contact-form select,
.dark-booking .contact-form textarea {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: var(--bg-cream);
}
.dark-booking .contact-form input:focus,
.dark-booking .contact-form select:focus,
.dark-booking .contact-form textarea:focus {
    border-color: var(--bg-cream);
}
.dark-booking .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--bg-cream);
}
.dark-booking .btn-solid.black-btn {
    background: var(--bg-cream);
    color: var(--primary-black);
}
.dark-booking .btn-outline:hover {
    background: var(--bg-cream);
    color: var(--primary-black);
}

/* Floating Social Actions */
.floating-social-actions {
    position: fixed;
    right: 2.5rem;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}
.social-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.social-float-btn svg, .social-float-btn i {
    width: 28px;
    height: 28px;
}
.social-float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.whatsapp-btn { background-color: #25D366; }
.messenger-btn { background-color: #0084FF; }

/* Social Journal Masonry */
.journal-section {
    padding: 10rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}
.masonry-item {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }
.masonry-item.square { grid-row: span 1; grid-column: span 1; }

.masonry-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

@media (max-width: 900px) {
    .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .slider-container { height: 400px; }
    .gift-container { flex-direction: column; gap: 4rem; text-align: center; }
    .gift-card-3d { width: 340px; height: 215px; }
    .team-grid { flex-direction: column; align-items: center; gap: 4rem; }
    .expansion-gallery { flex-direction: column; height: 1000px; }
    .expansion-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .expansion-card.active { flex: 3; }
}

@media (max-width: 768px) {
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .masonry-item.tall, .masonry-item.wide { grid-column: span 1; grid-row: span 1; }
    .floating-social-actions {
        bottom: 6.5rem; /* Sit above the mobile book bar */
        right: 1.5rem;
    }
    .social-float-btn {
        width: 50px; height: 50px;
    }
    .social-float-btn svg, .social-float-btn i {
        width: 24px; height: 24px;
    }
}

/* Background Images */
.hero-split-image { background-image: url('assets/hero-bg.webp'); }
#img-aromatherapy { background-image: url('assets/service1.webp'); }
#img-swedish { background-image: url('assets/service2.webp'); }
#img-deep-tissue { background-image: url('assets/service3.webp'); }
#avatar-1 { background-image: url('assets/avatar1.webp'); }
#avatar-2 { background-image: url('assets/avatar2.webp'); }
#avatar-3 { background-image: url('assets/avatar3.webp'); }

/* Page Transition Wipe */
#page-wipe {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-beige);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
#page-wipe.wiping-up {
    top: 0;
}
.wipe-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 6rem;
    color: var(--accent-terracotta);
}

/* Mobile Sticky Book Bar */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.mobile-booking-bar span {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-charcoal);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-booking-bar {
        display: flex;
    }
}
