/* Media Center Page */
.mc-page {
    --mc-gold: #c5a059;
    --mc-gold-glow: rgba(197, 160, 89, 0.35);
}

/* ===== HERO ===== */
.mc-hero {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.mc-hero-img {
    position: absolute;
    top: 0;
    width: 32%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.55;
    pointer-events: none;
}

.mc-hero-img-left {
    left: 0;
    background-position: left center;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.mc-hero-img-right {
    right: 0;
    background-position: right center;
    mask-image: linear-gradient(270deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(270deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.mc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.mc-flourish-top {
    color: var(--mc-gold);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.mc-hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    color: var(--mc-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.mc-subtitle {
    font-family: var(--serif);
    font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.mc-subtitle em { font-style: italic; }

.mc-intro {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.85rem;
}

.mc-intro strong {
    color: var(--mc-gold);
    font-weight: 700;
}

/* Section head */
.mc-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mc-section-head h2,
.mc-footer-tagline {
    font-family: var(--serif);
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    color: var(--mc-gold);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.mc-head-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mc-gold), transparent);
}

/* ===== RESOURCES ===== */
.mc-resources {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: transparent;
}

.mc-resources-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
}

.mc-resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem 1rem;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 6px;
    background: rgba(0, 20, 40, 0.55);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-height: 100%;
}

.mc-resource-card:hover {
    border-color: var(--mc-gold);
    box-shadow: 0 6px 24px rgba(197, 160, 89, 0.18);
    transform: translateY(-3px);
}

.mc-resource-icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--mc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mc-gold);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 14px var(--mc-gold-glow);
}

.mc-resource-card h3 {
    font-family: var(--serif);
    font-size: 0.62rem;
    color: var(--mc-gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.mc-resource-card p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
}

.mc-resource-cta {
    font-size: 0.58rem;
    color: var(--mc-gold);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mc-resource-cta i {
    font-size: 0.5rem;
    margin-left: 0.15rem;
}

/* ===== GALLERY ===== */
.mc-gallery {
    padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.mc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.mc-gallery-card {
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 20, 40, 0.55);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mc-gallery-card:hover {
    border-color: var(--mc-gold);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.18);
}

.mc-gallery-link {
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #ffffff;
}

.mc-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s;
}

.mc-gallery-card:hover .mc-gallery-link img {
    transform: scale(1.01);
}

.mc-gallery-card h3 {
    margin: 0;
    padding: 0.75rem 0.8rem;
    font-family: var(--serif);
    font-size: 0.78rem;
    color: var(--mc-gold);
    letter-spacing: 0.04em;
}

.mc-gallery-empty {
    text-align: center;
    padding: 1.5rem;
    border: 1px dashed rgba(197, 160, 89, 0.5);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

/* ===== CONTACT ===== */
.mc-contact {
    padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.mc-contact-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    background: rgba(0, 20, 40, 0.55);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.mc-contact-left,
.mc-contact-right {
    text-align: center;
}

.mc-contact-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--mc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mc-gold);
    font-size: 1.1rem;
    margin: 0 auto 0.65rem;
}

.mc-contact-left h3 {
    font-family: var(--serif);
    font-size: 0.78rem;
    color: var(--mc-gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
}

.mc-contact-left p,
.mc-contact-right p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.mc-contact-divider {
    width: 1px;
    height: 100px;
    background: rgba(197, 160, 89, 0.35);
    align-self: center;
}

.mc-contact-email {
    display: block;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.35rem;
    word-break: break-all;
}

.mc-contact-email:hover {
    color: var(--mc-gold);
}

.mc-contact-deco {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    text-align: center;
    opacity: 0.45;
    color: var(--mc-gold);
}

.mc-contact-deco i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.mc-contact-deco span {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.mc-footer {
    position: relative;
    padding: 2rem 0 5rem;
    text-align: center;
    background: var(--navy);
    color: #fff;
}

.mc-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    opacity: 0.8;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 70'%3E%3Cpath fill='none' stroke='%23c5a059' stroke-width='1.5' d='M0 70 L40 52 L80 60 L120 44 L160 56 L200 40 L240 52 L280 36 L320 48 L360 32 L400 44 L440 34 L480 50 L520 38 L560 54 L600 42 L640 58 L680 46 L720 62 L760 50 L800 66 L840 54 L880 70 L920 58 L960 70 L1000 58 L1040 70 L1080 58 L1120 70 L1160 58 L1200 68 V70Z'/%3E%3C/svg%3E") center bottom / 100% auto no-repeat;
}

.mc-footer-inner {
    position: relative;
    z-index: 1;
}

.mc-footer-tagline {
    margin: 0;
    font-size: clamp(0.72rem, 2vw, 0.9rem) !important;
}

.mc-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-top: 1.5rem;
}

.mc-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.2s;
}

.mc-footer-link:hover {
    opacity: 0.85;
}

.mc-footer-link i {
    font-size: 1.1rem;
    color: var(--mc-gold);
}

.mc-footer-link span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
    .mc-resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mc-hero-img {
        width: 45%;
        opacity: 0.35;
    }

    .mc-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-contact-box {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem;
    }

    .mc-contact-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .mc-contact-deco {
        display: none;
    }

    .mc-footer-links {
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .mc-resources-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .mc-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .mc-footer-tagline {
        white-space: normal !important;
        text-align: center;
        line-height: 1.5;
    }

    .mc-section-head {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mc-head-line { width: 80px; flex: none; }
}
