* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --gray: #888;
    --off-white: #f9f9f7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('img/nathalie.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
/*    transition: all 0.3s;*/
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

    .btn-primary:hover {
        background: var(--gold-light);
    }

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--black);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    color: #555;
    margin-bottom: 0.8rem;
}

.section-center {
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
}

#about {
    background: var(--off-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 550px;
        object-fit: cover;
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
        border: 2px solid var(--gold);
        z-index: -1;
    }

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.values-header {
    margin: 1rem;
    color: #555;
}

.values-grid {
    display: grid;
    gap: 2rem;
    grid-auto-rows: 1fr;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        grid-column: span 1 !important;
    }
}

/* Tablet and up: 3-2 layout */
@media (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .value-card {
        grid-column: span 2;
    }

        /* Center the last 2 items on the second row */
        .value-card:nth-last-child(2):nth-child(3n + 1) {
            grid-column-end: 4;
        }

        .value-card:last-child:nth-child(3n - 1) {
            grid-column-end: -2;
        }
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border: 1px solid #eee;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .value-card {
        padding: 2rem 1.5rem;
    }
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/*.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    grid-auto-rows: 1fr;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border: 1px solid #eee;
    transition: all 0.3s;
    grid-column: span 2;
}

.value-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column-end: 4;
}

.value-card:last-child:nth-child(3n - 1) {
    grid-column-end: -2;
}

    .value-card:hover {
        border-color: var(--gold);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.9rem;
}*/

#demos {
    background: var(--white);
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s;
}

    .demo-card:hover {
        border-color: var(--gold);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

.demo-cover {
    height: 160px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.demo-icon {
    font-size: 3rem;
    z-index: 1;
}

.demo-cover::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.demo-cover::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.demo-info {
    padding: 1.8rem;
}

    .demo-info h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .demo-info p {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

.audio-player {
    background: var(--off-white);
    padding: 1rem 1.2rem;
    border: 1px solid #e5e5e5;
}

.audio-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.play-btn {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

    .play-btn:hover {
        background: var(--gold-light);
        transform: scale(1.05);
    }

    .play-btn svg {
        fill: var(--black);
        width: 18px;
        margin-left: 3px;
    }

    .play-btn.playing svg {
        margin-left: 0;
    }

.audio-info {
    flex: 1;
}

.audio-title {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.audio-time {
    font-size: 0.75rem;
    color: var(--gray);
}

.progress-container {
    height: 6px;
    background: #ddd;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    position: relative;
    transition: width 0.1s;
}

    .progress-bar::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: var(--black);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.2s;
    }

.audio-player:hover .progress-bar::after {
    opacity: 1;
}

audio {
    display: none;
}

#contact {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

    #contact .section-title {
        color: var(--white);
        margin-bottom: 1rem;
    }

.contact-desc {
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.contact-email {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.3rem;
    margin-bottom: 2.5rem;
    transition: color 0.3s;
}

    .contact-email:hover {
        color: var(--gold-light);
    }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black);
    }

    .social-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 1.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}
