:root {
    --ivory: #FAF7F2;
    --plum: #4A1942;
    --rose-gold: #C9956C;
    --text-dark: #2C2C2C;
    --text-light: #FAF7F2;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-med: 0.4s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--ivory);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Main Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
    border-left: 1px solid rgba(74, 25, 66, 0.05);
}

::-webkit-scrollbar-thumb {
    background: #e8d5c4;
    border-radius: 10px;
    border: 2px solid var(--ivory);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-gold);
}

h1, h2, h3, h4, .logo, .hero-headline, .about-quote, .section-title {
    font-family: var(--font-serif);
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* Animations */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fadeUp 1.5s var(--transition-slow) forwards;
}

@keyframes breatheBg {
    0% { background-size: 150% 150%; background-position: center; }
    100% { background-size: 250% 250%; background-position: center; }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Place above body bg but below content */
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: floatShape 20s ease-in-out infinite alternate;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border: 1px solid var(--plum);
    border-radius: 50%;
    top: 10%;
    left: -5%;
    animation-duration: 25s;
}

.circle-2 {
    width: 500px;
    height: 500px;
    border: 1px solid var(--plum);
    border-radius: 50%;
    bottom: -10%;
    right: -10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.float-line-1 {
    width: 2px;
    height: 200px;
    background: var(--rose-gold);
    top: 40%;
    right: 15%;
    transform: rotate(45deg);
    animation-duration: 22s;
}

.float-line-2 {
    width: 150px;
    height: 2px;
    background: var(--rose-gold);
    bottom: 30%;
    left: 20%;
    transform: rotate(-15deg);
    animation-duration: 28s;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(40px) rotate(10deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: all var(--transition-med);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--rose-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--plum);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-med);
}

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

.btn-nav {
    text-decoration: none;
    color: var(--plum);
    border-bottom: 1px solid var(--plum);
    padding-bottom: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-med);
}

.btn-nav:hover {
    color: var(--rose-gold);
    border-color: var(--rose-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 1px;
    background: var(--plum);
    transition: var(--transition-med);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--ivory);
    border-bottom: 1px solid var(--rose-gold);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    background: radial-gradient(circle at center, rgba(201, 149, 108, 0.25) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: breatheBg 4s ease-in-out infinite alternate;
}

.hero-headline {
    font-size: 5rem;
    color: var(--plum);
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid var(--rose-gold);
    line-height: 1.1;
}

.hero-subline {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 400px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--plum);
    color: var(--ivory);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all var(--transition-slow);
}

.btn-primary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    padding: 2rem;
    padding-left: 0;
}

.hero-image-panel {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A1942 0%, #2A0E25 100%);
    border-radius: 200px 0 0 0;
    position: relative;
    overflow: hidden;
}

.decorative-line {
    position: absolute;
    background: var(--rose-gold);
}

.line-1 {
    width: 1px;
    height: 100%;
    left: 20%;
    top: 0;
    opacity: 0.3;
}

.line-2 {
    width: 100%;
    height: 1px;
    top: 30%;
    left: 0;
    opacity: 0.3;
}

/* Marquee & Featured In Strip */
.marquee-container {
    background: var(--plum);
    color: var(--ivory);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.featured-in-strip {
    text-align: center;
    padding: 2rem 0;
    background: var(--ivory);
    border-bottom: 1px solid rgba(74, 25, 66, 0.1);
}

.featured-in-content {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.featured-in-content .dot {
    color: var(--rose-gold);
    margin: 0 1.5rem;
    font-size: 1.2rem;
}

/* Services */
.services-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    color: var(--plum);
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.service-card {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #FDFBFA 0%, #FAF7F2 100%);
    border: 1px solid rgba(74, 25, 66, 0.1);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 25, 66, 0.05);
}

.card-tall { height: 450px; background: linear-gradient(135deg, #4A1942 0%, #6E2663 100%); color: var(--ivory); }
.card-short { height: 300px; background: linear-gradient(180deg, #FAF7F2 0%, #E8D5C4 100%); }
.card-medium { height: 380px; background: linear-gradient(180deg, #FAF7F2 0%, #E8D5C4 100%); }

.offset-down { margin-top: 4rem; }
.offset-up { margin-top: -3rem; }

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-tall h3 { color: var(--ivory); }
.card-short h3, .card-medium h3 { color: var(--plum); }

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
}

/* About Section */
.about-section {
    display: flex;
    min-height: 80vh;
    background: #FDFBFA;
}

.about-left {
    flex: 1.5;
    display: flex;
    align-items: center;
    padding: 8rem 10%;
}

.about-quote {
    font-size: 3.5rem;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.about-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--rose-gold);
}

.about-text {
    padding-left: 2rem;
    max-width: 500px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-weight: 300;
}

.about-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 4rem;
}

.about-shape {
    width: 80%;
    height: 80%;
    background: var(--plum);
    border-radius: 200px 200px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-shape-text {
    text-align: center;
    color: var(--rose-gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
}

.about-shape-text span {
    display: block;
    margin: 1rem 0;
}

/* Featured Strip */
.featured-strip-section {
    padding: 8rem 0;
    overflow: hidden;
}

.featured-strip-section .section-title {
    padding-left: 10%;
}

.strip-container {
    width: 100%;
    overflow-x: auto;
    padding: 0 10% 2rem 10%;
}

.strip-container::-webkit-scrollbar {
    height: 6px;
}

.strip-container::-webkit-scrollbar-track {
    background: rgba(74, 25, 66, 0.05);
    border-radius: 10px;
    margin: 0 10%;
}

.strip-container::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 10px;
}

.strip-container::-webkit-scrollbar-thumb:hover {
    background: var(--plum);
}

.strip-wrapper {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.collection-card {
    width: 350px;
    height: 500px;
    background: linear-gradient(180deg, #E8D5C4 0%, #C9956C 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-slow);
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card h3 {
    font-size: 2.2rem;
    color: var(--plum);
    margin-top: auto;
    margin-bottom: 1rem;
}

.view-link {
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--text-dark);
    align-self: flex-start;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    padding: 6rem 10%;
    border-top: 1px solid rgba(74, 25, 66, 0.1);
    border-bottom: 1px solid rgba(74, 25, 66, 0.1);
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--plum);
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-val::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rose-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat:hover .stat-val::after {
    transform: scaleX(1);
}

.stat-desc {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #666;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 10%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: var(--ivory);
    border: 1px solid rgba(74, 25, 66, 0.15);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    color: var(--rose-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.quote-text {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.client-name {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.client-role {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    margin-top: 0.2rem;
}

/* Book Section */
.book-section {
    padding: 8rem 2rem;
    background: #FDFBFA;
    position: relative;
    z-index: 2;
}

.urgency-banner {
    text-align: center;
    color: var(--rose-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: pulseText 2s ease-in-out infinite;
    font-weight: 500;
}

@keyframes pulseText {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(74, 25, 66, 0.2);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color var(--transition-med);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.form-btn {
    padding: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-med);
}

.btn-whatsapp {
    background: transparent;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp:hover {
    background: var(--rose-gold);
    color: var(--ivory);
}

/* Footer */
footer {
    background: var(--plum);
    color: var(--ivory);
    border-top: 2px solid var(--rose-gold);
    padding: 6rem 10% 2rem 10%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #E0D5DD;
    font-weight: 300;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--rose-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #E0D5DD;
    text-decoration: none;
    transition: color var(--transition-med);
    font-weight: 300;
}

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

.footer-contact p {
    color: #E0D5DD;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    color: #E0D5DD;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-section {
        flex-direction: column;
    }
    .about-right {
        min-height: 500px;
    }
    .offset-down, .offset-up {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .hero-left, .hero-right {
        padding: 2rem;
    }
    .hero-headline {
        font-size: 3.5rem;
        margin-top: 4rem;
    }
    .hero-image-panel {
        border-radius: 100px 0 0 0;
    }
    .nav-links, .btn-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
