:root {
    --primary: #2c3e50;    /* Charcoal Navy */
    --gold: #c5a059;       /* Classical Gold */
    --cream: #f8f8f5;      /* Sheet Music White */
    --text: #333333;       /* Dark Grey */
    --light-grey: #e5e5e5;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background-color: var(--cream);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Navigation --- */
nav {
    background: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* --- Buttons --- */
.btn, .btn-small, .btn-submit {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-primary, .btn-submit {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}
.btn-primary:hover, .btn-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.75rem;
    background: var(--gold);
    color: #fff;
}

/* --- Hero Section (Compact Version) --- */
.hero {
    height: auto; /* Shrinks to fit text */
    min-height: 300px; /* Prevents it from being too squashed */
    padding: 80px 20px; /* Reduced top/bottom padding */
    background: var(--primary); 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem; /* Smaller text */
    line-height: 1.1;
    margin: 10px 0; /* Tighter margins */
    font-style: italic;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.hero-location {
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 25px; /* Less space before buttons */
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.hero-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}
.hero-buttons .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* --- General Sections --- */
section { padding: 90px 0; }
.section-light { background: #fff; }
.section-color { background: var(--cream); }
.section-dark { background: var(--primary); color: #fff; }
.section-gold { background: #f0ece3; border-top: 4px solid var(--gold); }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: #fff; }

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
}

.lead {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

/* IMAGE STYLE */
.about-image-wrapper {
    text-align: center;
}

.profile-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 20px 20px 0px var(--gold);
}

.image-caption {
    margin-top: 25px; 
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.service-card:hover { transform: translateY(-5px); }

.service-card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.service-role { 
    color: var(--gold); 
    font-weight: 500; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 1px; 
    margin-bottom: 20px; 
}
.service-list { text-align: left; margin-top: 25px; list-style: none; }
.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

/* --- Repertoire --- */
.repertoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.rep-col h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 25px; border-bottom: 2px solid var(--gold); display: inline-block; }
.rep-list { list-style: none; }
.rep-list li { margin-bottom: 12px; }

/* --- Gallery (Photos) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.02);
}

/* --- VIDEO GRID --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Timeline / Honors --- */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}
.timeline-item .year {
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.timeline-item h3 { font-size: 1.5rem; color: #fff; }
.timeline-item p { color: rgba(255,255,255,0.7); }

/* --- Contact Form --- */
.contact-container { text-align: center; max-width: 700px; }
.contact-sub { margin-bottom: 40px; font-size: 1.1rem; }
.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 20px; 
}

.form-group { margin-bottom: 20px; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: var(--font-body);
}

.email-direct { margin-top: 20px; font-size: 0.9rem; color: #666; text-align: center; }

footer {
    text-align: center;
    padding: 30px;
    background: #222;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .about-grid, .services-grid, .repertoire-grid, .form-row, .video-grid { grid-template-columns: 1fr; }
    .hero { height: auto; padding: 100px 20px; }
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; } 
}