:root {
    --navy: #15253b;      /* Deep Navy from your photo */
    --midnight: #1a1d24;  /* The Midnight Blue from your photo - Main Background */
    --gold: #f4ce92;      /* Creamy Gold from your photo */
    --copper: #b6622d;    /* Burnt Sienna/Copper from your photo */
    --off-white: #fdfdfd;
}

body {
    background-color: var(--midnight); /* Replaces the pure black */
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--navy); /* Keeps the top bar distinct */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--copper); /* Adds a thin luxury accent line */
}

.brand-logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Mobile Responsive Menu Logic */
.nav-btn { display: none; }
#nav-check { display: none; }

@media (max-width: 768px) {
    .nav-btn { display: block; }
    .nav-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: var(--navy);
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 70px;
        left: 0;
    }
    .nav-links a { width: 100%; padding: 20px; margin: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    #nav-check:checked ~ .nav-links { height: calc(100vh - 70px); overflow-y: auto; }
}

/* Testimonial Cards */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 50px 5%;
}

.review-card {
    background: #1e2d42; /* A slightly lighter shade of your navy */
    padding: 40px;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(244, 206, 146, 0.1); /* Subtle gold border */
}

.accent-bar {
    width: 50px;
    height: 4px;
    background: var(--copper);
    margin-bottom: 20px;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info .name {
    display: block;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.client-info .title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.hero-section {
    display: flex;
    flex-direction: column; /* Stacks image over text */
    align-items: center;
    justify-content: center;
    /* Covers most of the screen height */
    min-height: 85vh;
    padding: 50px 5%;
    text-align: center;
}

.hero-image {
    width: 300px;
    max-width: 90%;
    border-radius: 10px;
    border: 2px solid var(--gold);
    margin-bottom: 20px; /* Space between picture and "The Voice..." text */
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-top: 10px;
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--off-white);
    max-width: 700px; /* Keeps text readable */
    margin: 0 auto 30px; /* Centers, adds space below */
    line-height: 1.6;
}

/* -- REVISED REVIEWS CSS (Gives 'Page' breathing room) -- */
.reviews-section {
    min-height: 80vh; /* separate 'page' feel */
    padding-top: 100px; /* critical padding so content isn't under sticky nav */
    /* ensures jump links land beautifully below the navy bar */
    scroll-margin-top: 70px;
}

.cta-button {
    background-color: #b6622d; /* Burnt Sienna/Copper */
    color: #fdfdfd;            /* Off-white text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;     /* Ensures padding scales properly */
    transition: 0.3s ease;     /* Makes the hover transition smooth */
}

.cta-button:hover {
    background-color: #f4ce92; /* Creamy Gold */
    color: #15253b;            /* Deep Navy text */
}

audio {
    filter: sepia(20%) saturate(70%) grayscale(100%) invert(92%) hue-rotate(180deg); /* Makes it look 'Gold' to match your site */
    height: 35px;
    margin-top: 10px;
}