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

body {
    font-family: 'Lato', sans-serif;
    background-color: #060b19;
    color: #F8F9FA;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-weight: 400;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f7d565;
}

.mshv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.mshv-top-bar {
    background: linear-gradient(180deg, #0f182b 0%, rgba(15, 24, 43, 0.9) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.mshv-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mshv-brand-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mshv-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #D4AF37;
    padding: 5px 10px;
}

.mshv-brand-titles {
    display: flex;
    flex-direction: column;
}

.mshv-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mshv-brand-sub {
    font-size: 0.8rem;
    color: #A0AABF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mshv-badge-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mshv-badge-item {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 8px 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.mshv-badge-18 {
    background-color: #D4AF37;
    color: #060b19;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* Hero Section */
.mshv-showcase {
    padding: 100px 0;
    background: radial-gradient(circle at center, #111d35 0%, #060b19 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.mshv-showcase-kicker {
    font-size: 0.9rem;
    color: #A0AABF;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.mshv-showcase-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.mshv-showcase-desc {
    font-size: 1.2rem;
    color: #A0AABF;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.mshv-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mshv-info-card {
    background: rgba(15, 24, 43, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mshv-info-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.mshv-info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #F8F9FA;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mshv-info-card p {
    color: #A0AABF;
    font-size: 0.95rem;
}

/* Common Section Styles */
.mshv-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mshv-sec-header {
    text-align: center;
    margin-bottom: 60px;
}

.mshv-sec-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mshv-sec-desc {
    color: #A0AABF;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.mshv-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mshv-block-card {
    background: linear-gradient(145deg, #0f182b 0%, #0a1120 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mshv-block-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mshv-block-card:hover::before {
    opacity: 1;
}

.mshv-card-kicker {
    font-size: 0.8rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.mshv-block-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #F8F9FA;
}

.mshv-block-card p {
    color: #A0AABF;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.mshv-card-list {
    list-style: none;
}

.mshv-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #F8F9FA;
    font-size: 0.9rem;
}

.mshv-card-list li::before {
    content: '✦';
    color: #D4AF37;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

/* Footer */
.mshv-bottom-bar {
    background-color: #040812;
    padding: 80px 0 40px;
    border-top: 2px solid #D4AF37;
}

.mshv-footer-slogan {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.mshv-footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.mshv-col-title {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 25px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mshv-footer-text p {
    color: #A0AABF;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.mshv-contact-list,
.mshv-nav-list {
    list-style: none;
}

.mshv-contact-list li,
.mshv-nav-list li {
    color: #A0AABF;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.mshv-nav-list a {
    color: #A0AABF;
}

.mshv-nav-list a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.mshv-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.mshv-footer-copy {
    text-align: center;
    color: rgba(160, 170, 191, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .mshv-info-grid, .mshv-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mshv-footer-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mshv-top-inner {
        flex-direction: column;
        gap: 20px;
    }
    .mshv-info-grid, .mshv-card-grid {
        grid-template-columns: 1fr;
    }
    .mshv-showcase-title {
        font-size: 3rem;
    }
}
