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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #8b7355;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --bg-light: #fafafa;
    --bg-dark: #1a1a1a;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    margin-top: 0;
    padding-top: 0;
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 180px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 0;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 C150,80 350,80 500,40 C650,0 850,0 1000,40 C1150,80 1200,80 1200,80 L1200,120 L0,120 Z" fill="rgba(212,175,55,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-top: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 0.8rem 0;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 0;
    margin: 0;
}

section:last-of-type {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    padding: 0;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Concerts Section */
.concerts {
    background: linear-gradient(to bottom, #fafafa 0%, white 100%);
    padding: 80px 0;
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.concert-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 4px solid var(--secondary-color);
}

.concert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.concert-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.concert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.concert-card:hover .concert-image {
    transform: scale(1.1);
}

.concert-content {
    padding: 2rem;
}

.concert-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.concert-venue,
.concert-date {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    font-size: 1rem;
}

.concert-description {
    color: #666;
    margin: 1rem 0;
    line-height: 1.7;
}

.concert-repertoire {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.concert-repertoire h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.concert-repertoire p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.no-concerts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #888;
    font-size: 1.1rem;
    font-style: italic;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 20px 0 10px !important;
    margin: 0 !important;
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.contact-intro {
    font-size: 1rem;
    font-weight: 300;
    margin: 0 auto 1rem;
    padding: 0;
    opacity: 0.9;
    max-width: 700px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
}

.contact-label {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    color: var(--text-light);
    text-align: center;
    padding: 15px 0;
    margin: 0;
    margin-top: auto;
    border-top: 1px solid rgba(212,175,55,0.2);
    width: 100%;
}

footer p {
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Performance optimizations */
.biography-image-full,
.biography-image-top,
.gallery-item {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

/* Image loading animation */
@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.biography-image-full.loaded {
    animation: imageFadeIn 0.5s ease;
}

/* Touch optimizations for mobile */
@media (hover: none) and (pointer: coarse) {
    .biography-image-full:hover,
    .gallery-item:hover {
        transform: none;
    }
    
    .biography-image-top:hover {
        transform: none;
    }
}

/* Concert Page Specific Styles */
.concert-info-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(139,115,85,0.05));
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.concert-date-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.icon-large {
    font-size: 2rem;
}

.date-text {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.concert-venue-info {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.concert-venue-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.concert-description-section {
    margin-bottom: 2.5rem;
}

.concert-repertoire-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #eee;
}

.repertoire-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.repertoire-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2c2c2c;
}

.concert-video-link {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Responsive for Concert styles */
@media (max-width: 768px) {
    .concert-info-box {
        padding: 1.2rem 1.5rem;
    }

    .concert-date-large {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .icon-large {
        font-size: 1.5rem;
    }

    .repertoire-title {
        font-size: 1.3rem;
    }

    .repertoire-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .concert-info-box {
        padding: 1rem;
    }

    .concert-date-large {
        font-size: 1rem;
    }

    .icon-large {
        font-size: 1.3rem;
    }
}

/* Responsive images */
@media (max-width: 768px) {
    .biography-image-full {
        max-height: 400px;
        object-fit: cover;
    }
    
    .biography-image-top {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .biography-image-full {
        max-height: 300px;
    }
    
    .biography-image-top {
        border-radius: 6px;
        margin-bottom: 2rem;
    }
}

/* Enhanced responsive breakpoints */
@media (max-width: 1400px) {
    .biography-text-full {
        max-width: 850px;
    }
    
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .biography-text-full {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .biography-image-top {
        max-width: 100%;
    }
    
    .container {
        padding: 0 25px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .biography-text-full {
        padding: 0 1.5rem;
    }
    
    .biography-image-top {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .biography-text-full {
        padding: 0 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Navigation Dropdown Mobile Styles */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .hero {
        padding: 100px 0 30px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .concert-card {
        margin-bottom: 0;
    }

    .concert-content {
        padding: 1.5rem;
    }

    .concert-content h3 {
        font-size: 1.4rem;
    }

    .concert-image-wrapper {
        height: 200px;
    }

    .about-content {
        padding: 0;
    }

    .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1.2rem;
    }

    .contact-label,
    .contact-value {
        font-size: 0.95rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 25px 0;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 12px;
    }

    section {
        padding: 20px 0;
    }

    .concert-content {
        padding: 1.2rem;
    }

    .concert-content h3 {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Archive Page Styles */
.archive-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.archive-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.archive-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.archive-list {
    max-width: 900px;
    margin: 0 auto;
}

.archive-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.archive-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.archive-item-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.archive-date {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.archive-venue {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.archive-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.archive-repertoire {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.archive-repertoire strong {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.archive-repertoire p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .archive-hero {
        padding: 100px 0 50px;
        margin-top: 60px;
    }

    .archive-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .archive-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .archive-content {
        padding: 50px 0;
    }

    .archive-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .archive-images-left,
    .archive-images-right {
        width: 100%;
        max-width: 100%;
        order: 0;
    }

    .archive-image-left,
    .archive-image-right {
        width: 100%;
    }

    .archive-item {
        order: 1;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .archive-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .archive-item-header h3 {
        font-size: 1.3rem;
        min-width: auto;
    }

    .archive-date {
        font-size: 0.9rem;
    }

    .archive-venue {
        font-size: 0.9rem;
    }

    .archive-description {
        font-size: 0.95rem;
    }

    .archive-repertoire {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .archive-repertoire strong {
        font-size: 1rem;
    }

    .archive-repertoire p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .archive-hero {
        padding: 90px 0 40px;
        margin-top: 50px;
    }

    .archive-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .archive-subtitle {
        font-size: 0.85rem;
    }

    .archive-item {
        padding: 1.2rem;
    }

    .archive-item-header h3 {
        font-size: 1.1rem;
    }
}

.archive-item-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.archive-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-item-content {
    padding: 0;
}

/* Portfolio Section Styles */
.portfolio-section {
    background-color: white;
    padding: 0;
    margin: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
    margin: 0;
    padding: 5px 0;
}

.portfolio-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--secondary-color);
    margin: 0;
    padding: 0;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.portfolio-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 0;
    padding: 0;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 0.8rem;
    margin: 0;
}

.portfolio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2c2c2c;
    font-weight: 400;
    white-space: pre-line;
}

.portfolio-text p {
    display: none !important;
}

.portfolio-footer {
    text-align: center;
    margin: 0;
    padding: 5px 0;
}

.no-portfolio {
    text-align: center;
    padding: 1rem;
    margin: 0;
    color: #888;
    font-size: 1rem;
    font-style: italic;
}

/* Portfolio List Page */
.portfolio-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.portfolio-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.portfolio-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.portfolio-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.portfolio-list-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-list-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.portfolio-list-image-wrapper {
    width: 300px;
    min-width: 300px;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.portfolio-list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-list-item:hover .portfolio-list-image {
    transform: scale(1.1);
}

.portfolio-list-content {
    padding: 2rem;
    flex: 1;
}

.portfolio-text-large {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2c2c2c;
    font-weight: 400;
}

.portfolio-text-large p {
    margin-bottom: 1.5rem;
}

/* Articles Section Styles (keeping for backward compatibility) */
.articles {
    background-color: white;
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--secondary-color);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: var(--secondary-color);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.article-author {
    font-weight: 600;
}

.article-date {
    opacity: 0.8;
}

.article-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.articles-footer {
    text-align: center;
    margin-top: 3rem;
}

.no-articles {
    text-align: center;
    padding: 3rem;
    color: #888;
    font-size: 1.1rem;
    font-style: italic;
}

/* Articles List Page */
.articles-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.articles-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.articles-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.articles-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.articles-list-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.article-list-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-list-image-wrapper {
    width: 300px;
    min-width: 300px;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.article-list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-list-item:hover .article-list-image {
    transform: scale(1.1);
}

.article-list-content {
    padding: 2rem;
    flex: 1;
}

.article-list-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-list-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-list-content h2 a:hover {
    color: var(--secondary-color);
}

/* Article Detail Page */
.article-detail {
    margin-top: 70px;
}

.article-detail-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.article-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-content {
    padding: 60px 0;
    background-color: white;
}

.article-detail-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.article-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-detail-meta {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    color: var(--accent-color);
}

.article-detail-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-body p {
    margin-bottom: 1.5rem;
}

.article-detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

/* Responsive for Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-hero {
        padding: 100px 0 50px;
        margin-top: 60px;
    }

    .portfolio-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .portfolio-hero-subtitle {
        font-size: 0.95rem;
    }

    .portfolio-content {
        padding: 50px 0;
    }

    .portfolio-list-item {
        flex-direction: column;
    }

    .portfolio-list-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .portfolio-list-content {
        padding: 1.5rem;
    }

    .portfolio-text-large {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .articles-hero {
        padding: 100px 0 50px;
        margin-top: 60px;
    }

    .articles-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .articles-hero-subtitle {
        font-size: 0.95rem;
    }

    .articles-content {
        padding: 50px 0;
    }

    .article-list-item {
        flex-direction: column;
    }

    .article-list-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .article-list-content {
        padding: 1.5rem;
    }

    .article-list-content h2 {
        font-size: 1.5rem;
    }

    .article-detail-hero {
        height: 300px;
    }

    .article-detail-title {
        font-size: 2rem;
    }

    .article-detail-body {
        font-size: 1rem;
    }

    .article-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-title {
        font-size: 1.6rem;
    }

    .portfolio-list-content h2 {
        font-size: 1.3rem;
    }

    .articles-hero-title {
        font-size: 1.6rem;
    }

    .article-detail-title {
        font-size: 1.6rem;
    }

    .article-list-content h2 {
        font-size: 1.3rem;
    }
}

/* Biography Page Styles */
.biography-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.biography-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 C150,80 350,80 500,40 C650,0 850,0 1000,40 C1150,80 1200,80 1200,80 L1200,120 L0,120 Z" fill="rgba(212,175,55,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.biography-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.biography-content {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa 0%, white 100%);
    position: relative;
    will-change: transform;
}

.biography-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.biography-image-top {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.biography-image-top:hover {
    transform: translateY(-5px);
}

.biography-image-full {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.biography-image-full:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.biography-image-full.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.biography-image-full.loaded {
    opacity: 1;
}

.biography-text-full {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.biography-header {
    margin-bottom: 3.5rem;
}

.biography-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.biography-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.biography-body {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #2c2c2c;
    font-weight: 400;
    text-align: left;
    max-width: 100%;
    width: 100%;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

.biography-body a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    display: inline-block;
    hyphens: auto;
}

.biography-body p {
    margin-bottom: 2.5rem;
    text-indent: 0;
    position: relative;
    padding-left: 0;
    word-spacing: 0.1em;
}

.biography-body ul,
.biography-body ol {
    margin: 2rem 0 2.5rem 0;
    padding-left: 2.5rem;
    line-height: 2;
}

.biography-body li {
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    padding-left: 0.5rem;
}

.biography-body li:last-child {
    margin-bottom: 0;
}

.biography-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

.biography-body h3,
.biography-body h4,
.biography-body h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.biography-body h3 {
    font-size: 1.6rem;
}

.biography-body h4 {
    font-size: 1.4rem;
}

.biography-body h5 {
    font-size: 1.2rem;
}

.biography-body h3:first-child,
.biography-body h4:first-child,
.biography-body h5:first-child {
    margin-top: 0;
}

.biography-body p:first-child {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 3.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(139,115,85,0.05));
    border-left: 5px solid var(--secondary-color);
    border-radius: 6px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.biography-body p:first-child::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.25;
    position: absolute;
    top: -5px;
    left: 15px;
    line-height: 1;
    font-weight: 700;
}

/* Archive items - highlight all paragraphs */
.archive-item-body p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(139,115,85,0.05));
    border-left: 5px solid var(--secondary-color);
    border-radius: 6px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.archive-item-body p::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.25;
    position: absolute;
    top: -5px;
    left: 15px;
    line-height: 1;
    font-weight: 700;
}

.archive-item-body p:last-child {
    margin-bottom: 0;
}

/* Archive wrapper for images on left and right */
.archive-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.archive-images-left,
.archive-images-right {
    flex-shrink: 0;
    width: 350px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.archive-image-left,
.archive-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.archive-image-left img,
.archive-image-right img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.archive-images-left {
    order: 1;
}

.archive-item {
    order: 2;
    flex: 1;
}

.archive-images-right {
    order: 3;
}

/* Fix long URLs from overflowing */
.archive-item-body {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: hidden;
}

.archive-item-body a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    display: inline-block;
    hyphens: auto;
}

/* Archive Dropdown Menu */
.archive-dropdown-wrapper {
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
}

.archive-dropdown {
    position: relative;
    display: inline-block;
}

.archive-dropdown-btn {
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.archive-dropdown-btn:hover {
    background: linear-gradient(135deg, #2d2d2d, var(--primary-color));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.archive-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.archive-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.archive-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.archive-dropdown-item {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.archive-dropdown-item:last-child {
    border-bottom: none;
}

.archive-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(139,115,85,0.05));
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.archive-dropdown-item.active {
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(139,115,85,0.08));
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .archive-dropdown-wrapper {
        margin: 1.5rem 0 2rem;
    }
    
    .archive-dropdown-btn {
        min-width: 200px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .archive-dropdown-item {
        padding: 0.9rem 1.5rem;
    }
}

.biography-body p:not(:first-child) {
    text-align: left;
    color: #2c2c2c;
}

.biography-body p:not(:first-child):not(:last-child) {
    margin-bottom: 3rem;
}

.biography-body p:last-child {
    margin-bottom: 0;
}

/* Image Gallery Styles */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive for Biography */
@media (max-width: 968px) {
    .biography-image-top {
        max-width: 100%;
        margin-bottom: 3rem;
        border-radius: 8px;
    }

    .biography-image-full {
        border-radius: 8px;
    }

    .biography-text-full {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

    .biography-title {
        text-align: center;
        font-size: 2.5rem;
    }

    .biography-divider {
        margin: 0 auto 2rem;
    }

    .biography-body {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .biography-body p:first-child {
        font-size: 1.2rem;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .biography-body p:not(:first-child) {
        margin-bottom: 2.5rem;
    }

    .biography-body p:last-child {
        margin-bottom: 0;
    }

    .biography-body ul,
    .biography-body ol {
        padding-left: 2rem;
        margin: 1.5rem 0 2rem 0;
    }

    .biography-body li {
        margin-bottom: 1rem;
    }

    .biography-body h3 {
        font-size: 1.4rem;
        margin-top: 2.5rem;
    }

    .biography-body h4 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .biography-body h5 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .biography-hero {
        padding: 120px 0 60px;
        margin-top: 60px;
    }

    .biography-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .biography-content {
        padding: 60px 0;
    }

    .biography-wrapper {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .biography-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .biography-body {
        font-size: 1.1rem;
        line-height: 1.9;
        text-align: left;
    }

    .biography-body p:first-child {
        font-size: 1.15rem;
        padding: 1.2rem;
    }

    .biography-body p:first-child::before {
        font-size: 3rem;
        top: -5px;
        left: 8px;
    }

    .biography-image-top {
        margin-bottom: 2rem;
        border-radius: 6px;
    }

    .biography-image-full {
        border-radius: 6px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .biography-hero {
        padding: 100px 0 50px;
    }

    .biography-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .biography-content {
        padding: 40px 0;
    }

    .biography-text-full {
        padding: 0 1rem;
    }

    .biography-title {
        font-size: 2rem;
    }

    .biography-body {
        font-size: 1.05rem;
        line-height: 1.75;
        letter-spacing: 0.2px;
    }

    .biography-body p:first-child {
        font-size: 1.15rem;
        padding: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.75;
    }

    .biography-body p:first-child::before {
        font-size: 4rem;
        top: -3px;
        left: 10px;
    }

    .biography-body p {
        margin-bottom: 2rem;
    }

    .biography-body p:not(:first-child) {
        margin-bottom: 2rem;
    }

    .biography-body p:last-child {
        margin-bottom: 0;
    }

    .biography-image-wrapper {
        padding: 0.3rem;
    }

    .biography-divider {
        width: 60px;
        height: 3px;
    }

    .biography-body ul,
    .biography-body ol {
        padding-left: 1.5rem;
        margin: 1.5rem 0 2rem 0;
    }

    .biography-body li {
        margin-bottom: 0.8rem;
    }

    .biography-body h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .biography-body h4 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .biography-body h5 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
}

/* Arrangements page - e-commerce style grid */
.arrangements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.arrangement-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
    min-height: 100%;
}

.arrangement-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: default;
    width: 100%;
    height: 100%;
}

.arrangement-card-clickable {
    cursor: pointer;
}

.arrangement-card:hover,
.arrangement-card-link:hover .arrangement-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.arrangement-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrangement-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.arrangement-card:hover .arrangement-card-image img {
    transform: scale(1.02);
}

.arrangement-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.arrangement-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.arrangement-card-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.arrangement-card-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.arrangement-card-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.arrangement-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

/* Responsive grid */
@media (max-width: 992px) {
    .arrangements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .arrangements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .arrangement-card-image {
        height: 200px;
    }
    
    .arrangement-card-content {
        padding: 1.2rem;
    }
    
    .arrangement-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .arrangements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .arrangement-card-image {
        height: 220px;
    }
    
    .arrangement-card-actions {
        flex-direction: column;
    }
    
    .btn-small {
        width: 100%;
    }
}

/* Concerts page - e-commerce style grid */
.concerts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.concert-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.concert-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concert-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.concert-card:hover .concert-card-image img {
    transform: scale(1.02);
}

.concert-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(139,115,85,0.05));
    color: #999;
    font-size: 1rem;
    font-style: italic;
}

.concert-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.concert-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.concert-card-date {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.concert-card-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.concert-card-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.concert-card-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.concert-card-repertoire {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.concert-card-repertoire strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.concert-card-repertoire p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.concert-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    flex-wrap: wrap;
}

/* Responsive grid for concerts */
@media (max-width: 992px) {
    .concerts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .concerts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .concert-card-image {
        height: 200px;
    }
    
    .concert-card-content {
        padding: 1.2rem;
    }
    
    .concert-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concert-card-image {
        height: 220px;
    }
    
    .concert-card-actions {
        flex-direction: column;
    }
    
    .concert-card-actions .btn-small {
        width: 100%;
    }
}
