/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-gold: #c9a961;
    --accent-beige: #e8dcc4;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
}

/* Navigation */
nav {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

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

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--accent-gold);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--accent-gold);
}

.menu-toggle:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero .background-inner {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    text-align: left;
    width: 100%;
}

.hero .background-photo {
    width: 320px;
    min-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.hero .background-text {
    flex: 1;
}

.hero .background-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.hero .background-text p:last-child {
    margin-bottom: 0;
}

.demo-reel {
    width: 100%;
    margin-top: 1.5rem;
}

.demo-reel-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

/* Custom Audio Player */
.custom-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom-player:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.player-play-btn {
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.player-play-btn:hover {
    background-color: #b89850;
    transform: scale(1.05);
}

.player-play-btn:active {
    transform: scale(0.95);
}

.player-play-btn svg {
    width: 18px;
    height: 18px;
}

.player-progress {
    flex: 1;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-progress-bar {
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    min-width: 2.5rem;
    text-align: center;
    user-select: none;
}

.player-volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 50%;
    transition: color 0.3s ease;
}

.player-volume-btn:hover {
    color: var(--accent-gold);
}

/* Demo Video Section */
.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin: 1rem auto;
}

.demo-video-section {
    max-width: 800px;
    margin: 1rem auto 0;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Background Section (Home Page) */
.background-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.background-inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.background-photo {
    width: 320px;
    min-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.background-text {
    flex: 1;
}

.background-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.background-text p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.about-section {
    margin-bottom: 4rem;
    padding: 0;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Voice Samples */
.samples-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.samples-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.samples-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.samples-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.sample-item {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.sample-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sample-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
}

.sample-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Custom Audio Player Styling */
.sample-item audio {
    width: 100%;
    margin: 1.25rem 0;
    border-radius: 8px;
    outline: none;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sample-item audio:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.sample-item audio:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Audio player controls styling */
.sample-item audio::-webkit-media-controls-panel {
    background-color: var(--primary-bg);
}

.sample-item audio::-webkit-media-controls-play-button,
.sample-item audio::-webkit-media-controls-pause-button {
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.sample-item audio::-webkit-media-controls-current-time-display,
.sample-item audio::-webkit-media-controls-time-remaining-display {
    color: var(--text-primary);
}

.sample-item audio::-webkit-media-controls-timeline {
    background-color: var(--border-color);
    border-radius: 25px;
    margin: 0 0.5rem;
}



/* Optional bilingual demo styling */
.bilingual-demo {
    border-left: 3px solid var(--accent-gold);
}

/* Contact Page */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.contact-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-bg);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-info .email-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info .email-link:hover {
    color: #b89850;
    text-decoration: underline;
}

.contact-info .social-icons {
    margin-top: 1.5rem;
    justify-content: center;
}

.contact-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #c0c0c0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    background-color: var(--primary-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
    font-style: italic;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

/* Error state styling */
.error-message {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
    line-height: 1.4;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #d32f2f;
    background-color: #fff5f5;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #d32f2f;
    background-color: #fff5f5;
}

.form-group.error .error-message {
    display: block;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group.error input:focus,
.form-group.error textarea:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Submit button styling */
.submit-btn {
    padding: 1rem 2rem;
    background-color: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

.submit-btn:hover {
    background-color: #b89850;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.3);
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* Success and error message styling */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Roles Page */
.roles-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.roles-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.roles-table-wrapper {
    overflow-x: auto;
}

.roles-table {
    width: 100%;
    border-collapse: collapse;
}

.roles-table thead th {
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.roles-table tbody td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1rem;
}

.roles-table tbody tr:last-child td {
    border-bottom: none;
}

.roles-table tbody tr:hover {
    background-color: var(--secondary-bg);
}

.roles-table a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.roles-table a:hover {
    color: #b89850;
    text-decoration: underline;
}

/* Equipment Page */
.equipment-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.equipment-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.equipment-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.equipment-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.equipment-label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.equipment-value {
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-align: right;
}

.equipment-section {
    margin-top: 3rem;
}

.equipment-section h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
}

.voice-types-list {
    list-style: none;
    padding: 0;
}

.voice-types-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.voice-types-list li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

footer .social-icons {
    justify-content: center;
    margin-top: 1rem;
}

footer .social-icons svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: block;
        order: -1;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-bg);
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-links a:hover {
        background-color: var(--secondary-bg);
    }

    /* Keep social icons visible on mobile */
    nav .social-icons {
        gap: 0.75rem;
    }

    nav .social-icons svg {
        width: 18px;
        height: 18px;
    }

    /* Hero responsive styles for tablet */
    .hero {
        padding: 3rem 1.5rem;
        min-height: calc(100vh - 180px);
    }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: 0.08em;
        margin-bottom: 1.25rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-image {
        max-width: 350px;
    }

    .hero .background-inner {
        gap: 2rem;
    }

    .hero .background-photo {
        width: 260px;
        min-width: 220px;
    }

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

    /* Background section responsive for tablet */
    .background-section {
        padding: 3rem 1.5rem;
    }

    .background-inner {
        gap: 2rem;
    }

    .background-photo {
        width: 260px;
        min-width: 220px;
    }

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

    main {
        padding: 2rem 1rem;
    }

    .about-content {
        padding: 0 1.5rem;
    }

    .about-content h1 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .about-section {
        margin-bottom: 3rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    /* Samples page responsive styles for tablet */
    .samples-content {
        padding: 0 1.5rem;
    }

    .samples-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .samples-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .samples-grid {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }

    .sample-item {
        padding: 1.75rem;
    }

    .sample-item h3 {
        font-size: 1.35rem;
    }

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

    .sample-item audio {
        padding: 0.45rem;
    }

    .download-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact page responsive styles for tablet */
    .contact-content {
        padding: 0 1.5rem;
    }

    .contact-content h1 {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }

    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .contact-info {
        padding: 1.75rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-info .email-link {
        font-size: 1.15rem;
    }

    .contact-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.35rem;
    }

    .contact-form {
        gap: 1.35rem;
    }

    .form-group textarea {
        min-height: 160px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    /* Hero responsive styles for mobile */
    .hero {
        padding: 2rem 1rem;
        min-height: calc(100vh - 160px);
    }

    .hero h1 {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }

    .hero .tagline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 280px;
        border-radius: 6px;
    }

    .hero .background-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero .background-photo {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }

    .hero .background-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Background section responsive for mobile */
    .background-section {
        padding: 2rem 1rem;
    }

    .background-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .background-photo {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }

    .background-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    main {
        padding: 1.5rem 1rem;
    }

    nav .social-icons {
        gap: 0.5rem;
    }

    nav .social-icons svg {
        width: 16px;
        height: 16px;
    }

    footer {
        padding: 1.5rem 1rem;
        margin-top: 3rem;
    }

    footer p {
        font-size: 0.85rem;
    }

    footer .social-icons svg {
        width: 18px;
        height: 18px;
    }

    .about-content {
        padding: 0 1rem;
    }

    .about-content h1 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        letter-spacing: 0.03em;
    }

    .about-section {
        margin-bottom: 2.5rem;
    }

    .about-content h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    /* Samples page responsive styles for mobile */
    .samples-content {
        padding: 0 1rem;
    }

    .samples-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.03em;
    }

    .samples-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .samples-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

    .sample-item {
        padding: 1.5rem;
    }

    .sample-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .sample-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .sample-item audio {
        margin: 1rem 0;
        padding: 0.4rem;
        border-radius: 6px;
    }

    .download-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        border-radius: 4px;
    }

    .download-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Contact page responsive styles for mobile */
    .contact-content {
        padding: 0 1rem;
    }

    .contact-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.03em;
    }

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .contact-info .email-link {
        font-size: 1.05rem;
        word-break: break-all;
    }

    .contact-info .social-icons {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }

    .contact-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .contact-form {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 150px;
    }

    .submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .form-message {
        padding: 0.875rem 1.25rem;
        margin-top: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Desktop - ensure horizontal layout */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }
}

/* Large desktop screens */
@media (min-width: 1440px) {
    .hero {
        padding: 1rem 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .hero .tagline {
        font-size: 1.4rem;
        margin-bottom: 3.5rem;
    }

    .hero-image {
        max-width: 450px;
    }
}
