:root {
    --color-gold: #b49648;
    --color-gold-light: #c9b37a;
    --color-gold-hover: #967d3c;
    --color-bg: #fdfdfc;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.4s;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

/* Typography Refresh */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 120px 0;
}

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

.gold-text {
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(180, 150, 72, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 150, 72, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(180, 150, 72, 0.3);
}

/* Navigation - Glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all var(--transition-speed);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(253, 253, 252, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    transition: height 0.3s;
}

header.scrolled .logo img {
    height: 70px;
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

header.scrolled .nav-links a {
    color: var(--color-dark);
    text-shadow: none;
}

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

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

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

/* Hero Section Refreshed */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-white);
    text-align: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.hero-logo {
    width: 440px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 50px;
}

/* Make logo white in hero for contrast */
.hero .hero-logo {
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* About Section */
.about {
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: 'Anouk';
    position: absolute;
    bottom: -20px;
    right: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    color: rgba(180, 150, 72, 0.03);
    z-index: 0;
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 2rem;
}

/* Pricing Section Refreshed */
.pricing {
    background-color: #f8f8f6;
}

.pricing h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.price-category {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.price-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-category h3 {
    text-align: center;
    margin-bottom: 35px;
    color: var(--color-gold);
    font-size: 1.6rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.price-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
    padding-right: 20px;
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold-hover);
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

/* Contact Section Refreshed */
.contact {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.contact h2 {
    color: var(--color-white);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
}

.contact p {
    color: #999;
    margin-bottom: 40px;
}

.contact-info {
    margin: 40px 0;
}

.contact-info h3 {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

footer {
    padding: 30px 0;
    text-align: center;
    background-color: #0a0a0a;
    color: #444;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    nav {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-logo {
        width: 260px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about h2,
    .pricing h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .about::after {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-category {
        padding: 30px 20px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 180px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .service-price {
        text-align: left;
    }
}