/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    background-color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.5px;
}

.role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #9f7419;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #9f7419;
    background-color: rgba(159, 116, 25, 0.1);
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    z-index: 1001;
}

.burger div {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #9f7419;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #9f7419 0%, #b8943a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(159, 116, 25, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 116, 25, 0.4);
}

/* ===== MAIN CONTENT ===== */
main {
    margin-top: 0;
}

#video-container {
    padding: 4rem 0 2rem;
    width: 100%;
    margin: 0 auto;
}

.section {
    margin-bottom: 6rem;
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #9f7419;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #9f7419, #b8943a);
}

/* ===== VIDEO GRID ===== */
.video-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 0.5rem;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    aspect-ratio: 16/9;
    width: 100%;
    margin-bottom: 0;
    border: none;
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: none;
}

.video-wrapper:hover video {
    filter: brightness(0.7);
}

/* ===== ROW CAPTIONS - CENTERED BELOW EACH ROW ===== */
.row-caption {
    text-align: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 auto 1rem auto;
    max-width: 800px;
    width: calc(100% - 4rem);
}

.row-caption h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.row-caption p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ===== HIDE INDIVIDUAL VIDEO CAPTIONS ===== */
.video-caption {
    display: none;
}

/* ===== VIDEO OVERLAY - SIMPLE HOVER EFFECT ===== */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
}

.video-wrapper:hover .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

/* ===== VIMEO OVERLAY ===== */
.vimeo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    cursor: pointer;
}

/* Mobile indicator for tap to close */
@media (max-width: 768px) {
    .vimeo-overlay::before {
        content: "Tap outside to close";
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        font-weight: 400;
        pointer-events: none;
        z-index: 2001;
    }
}

.vimeo-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.8);
    animation: scaleUp 0.5s ease-out forwards;
    cursor: default;
}

.vimeo-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    display: block;
}

.close-video {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-video:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
    .close-video {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    
    .close-video:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.95);
    }
}

/* ===== ABOUT PAGE SECTIONS ===== */
.about-section,
.awards-section,
.press-section,
.contact-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section */
    .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    }
    
    .about-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #9f7419;
    margin-bottom: 0.5rem;
    font-weight: 700;
    }
    
    .about-text h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    }
    
    .about-text p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

/* Awards Section */
.awards-section h2,
.press-section h2,
.contact-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #9f7419;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.awards-section h2::after,
.press-section h2::after,
.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #9f7419, #b8943a);
}

.awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.awards-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(159, 116, 25, 0.3);
}

.awards-list li strong {
    display: block;
    font-size: 1.25rem;
    color: #9f7419;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.awards-list li p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Press Section */
.press-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.press-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.press-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(159, 116, 25, 0.3);
}

.press-list a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.press-list a:hover {
    color: #9f7419;
}

.press-list a strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.press-list a span {
    display: block;
    font-size: 0.875rem;
    color: #9f7419;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
        display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(159, 116, 25, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #9f7419;
    width: 40px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    color: #9f7419;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #ffffff;
        text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #9f7419;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes scaleUp {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
        from {
            opacity: 0;
        transform: translateY(30px);
        }
        to {
            opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: #ffffff;
    margin: 0 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #9f7419;
    transform: translateY(-2px);
}

.developer-credit {
    padding-top: 1.5rem;
    border-top: none;
}

.developer-credit p {
    font-size: 0.875rem;
    color: #999999;
        margin: 0;
}

.developer-credit a {
    color: #9f7419;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media screen and (min-width: 1400px) {
    #video-container {
        padding: 6rem 0 4rem;
    }
    
    .video-row {
        gap: 3rem;
        padding: 0 4rem;
    }
    
    .about-section,
    .awards-section,
    .press-section,
    .contact-section {
        padding: 8rem 4rem 6rem;
    }
}

/* Desktop */
@media screen and (max-width: 1399px) and (min-width: 1025px) {
    .video-row {
        gap: 2rem;
        padding: 0 3rem;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    #video-container {
        padding: 3rem 0 2rem;
    }
    
    .video-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .row-caption {
        padding: 1.5rem;
        width: calc(100% - 2rem);
        margin: 0 auto;
    }
    
    .vimeo-container {
        width: 95%;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-section,
    .awards-section,
    .press-section,
    .contact-section {
        padding: 4rem 1.5rem 3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
        opacity: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-links.nav-active {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        z-index: 999;
        animation: fadeInBackground 0.5s ease forwards;
    }
    
    .nav-links a {
        margin: 1rem 0;
        font-size: 1.5rem;
        opacity: 0;
        animation: fadeInLinks 1s ease forwards;
    }
    
    .nav-links a:nth-child(1) { animation-delay: 0.3s; }
    .nav-links a:nth-child(2) { animation-delay: 0.5s; }
    
    @keyframes fadeInBackground {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes fadeInLinks {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    .hero-section {
        height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat {
        gap: 0.25rem;
    }
    
    #video-container {
        padding: 2rem 0 1rem;
    }
    
    .section {
        margin-bottom: 4rem;
    }
    
    .video-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .video-wrapper {
        aspect-ratio: 16/9;
        width: 100%;
        margin-bottom: 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }
    
    .video-wrapper video {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* MOBILE ROW CAPTION STYLING */
    .row-caption {
        padding: 1rem;
        width: calc(100% - 2rem);
        margin: 0 auto 1rem auto;
        border-radius: 8px;
        border: none;
    }
    
    .row-caption h3 {
        font-size: 1rem;
    text-align: center;
        margin-bottom: 0.75rem;
        color: white;
        font-family: 'Playfair Display', serif;
        font-weight: 600;
    }
    
    .row-caption p {
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.4;
        color: #cccccc;
        margin: 0;
    }
    
    .vimeo-container {
        width: 95%;
    }
    
    .close-video {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .vimeo-container iframe {
        height: 300px;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    text-align: center;
    }
    
    .about-section,
    .awards-section,
    .press-section,
    .contact-section {
        padding: 3rem 1rem 2rem;
    }
    
    .awards-list li,
    .press-list li {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-item i {
        width: auto;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.75rem;
    }
    
    .name {
        font-size: 1rem;
    }
    
    .role {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .video-row {
        padding: 0 0.5rem;
        gap: 2rem;
    }
    
    .video-caption h3 {
        font-size: 0.875rem;
    }
    
    .video-caption p {
        font-size: 0.75rem;
    }
    
    .social-links a {
        font-size: 1.25rem;
        margin: 0 0.75rem;
    }
    
    .about-text h1 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.875rem;
    }
    
    .awards-list li strong,
    .press-list a strong {
        font-size: 1rem;
    }
    
    .awards-list li p {
        font-size: 0.875rem;
    }
    
    .contact-item a {
        font-size: 0.875rem;
    }
    
    /* Ensure close button is always visible on small mobile */
    .close-video {
        top: 5px;
        right: 5px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.95);
        border: 2px solid rgba(255, 255, 255, 0.5);
        z-index: 2002;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #9f7419;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== VIDEO LOADING OPTIMIZATIONS ===== */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn-primary:focus,
.social-links a:focus,
.close-video:focus,
.press-list a:focus,
.contact-item a:focus {
    outline: 2px solid #9f7419;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .video-caption {
        background: #000000;
        border: 2px solid #ffffff;
    }
    
    .overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .awards-list li,
    .press-list li,
    .contact-item {
        background: #000000;
        border: 2px solid #ffffff;
    }
}