:root {
    --mhfe-bg: #0b0c10;
    --mhfe-surface: #1f2833;
    --mhfe-surface-hover: #2c3846;
    --mhfe-accent: #c5a059;
    --mhfe-accent-light: #e6c888;
    --mhfe-text: #f5f5f5;
    --mhfe-text-muted: #a1a1aa;
    --mhfe-border: #313a46;
    --mhfe-font-main: 'Inter', sans-serif;
    --mhfe-font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body.mhfe-body {
    background-color: var(--mhfe-bg);
    color: var(--mhfe-text);
    font-family: var(--mhfe-font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Layout */
.mhfe-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.mhfe-site-top {
    background-color: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mhfe-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

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

.mhfe-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mhfe-logo-mark {
    font-family: var(--mhfe-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--mhfe-bg);
    background: linear-gradient(135deg, var(--mhfe-accent), var(--mhfe-accent-light));
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.mhfe-brand-text {
    display: flex;
    flex-direction: column;
}

.mhfe-brand-name {
    font-family: var(--mhfe-font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--mhfe-text);
}

.mhfe-brand-sub {
    font-size: 12px;
    color: var(--mhfe-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mhfe-badge-age span {
    border: 1px solid var(--mhfe-accent);
    color: var(--mhfe-accent);
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Hero Showcase */
.mhfe-showcase-zone {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
    text-align: center;
    border-bottom: 1px solid var(--mhfe-border);
}

.mhfe-kicker-label {
    display: inline-block;
    color: var(--mhfe-accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
}

.mhfe-kicker-label::before,
.mhfe-kicker-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--mhfe-accent);
}

.mhfe-kicker-label::before {
    left: -40px;
}

.mhfe-kicker-label::after {
    right: -40px;
}

.mhfe-main-heading {
    font-family: var(--mhfe-font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--mhfe-text);
}

.mhfe-lead-paragraph {
    max-width: 700px;
    margin: 0 auto 64px;
    font-size: 18px;
    color: var(--mhfe-text-muted);
}

.mhfe-info-triad {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.mhfe-triad-item {
    padding: 32px 24px;
    background-color: var(--mhfe-surface);
    border: 1px solid var(--mhfe-border);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mhfe-triad-item:hover {
    transform: translateY(-5px);
    border-color: var(--mhfe-accent);
}

.mhfe-triad-title {
    font-family: var(--mhfe-font-heading);
    font-size: 20px;
    color: var(--mhfe-accent-light);
    margin-bottom: 12px;
}

.mhfe-triad-desc {
    font-size: 14px;
    color: var(--mhfe-text-muted);
}

/* Sections */
.mhfe-section-block {
    padding: 100px 0;
}

.mhfe-alt-bg {
    background-color: #0e1116;
    border-bottom: 1px solid var(--mhfe-border);
}

.mhfe-section-heading {
    font-family: var(--mhfe-font-heading);
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
}

.mhfe-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    color: var(--mhfe-text-muted);
    font-size: 16px;
}

/* Grid & Cards */
.mhfe-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mhfe-feature-box {
    background-color: var(--mhfe-surface);
    border: 1px solid var(--mhfe-border);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mhfe-feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mhfe-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mhfe-feature-box:hover {
    background-color: var(--mhfe-surface-hover);
    border-color: #434c5e;
}

.mhfe-feature-box:hover::before {
    opacity: 1;
}

.mhfe-box-kicker {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mhfe-accent);
    margin-bottom: 16px;
}

.mhfe-box-title {
    font-family: var(--mhfe-font-heading);
    font-size: 24px;
    margin-bottom: 16px;
}

.mhfe-box-text {
    color: var(--mhfe-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.mhfe-box-list {
    list-style: none;
}

.mhfe-box-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.mhfe-box-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--mhfe-accent);
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

/* Footer */
.mhfe-site-bottom {
    background-color: #07080a;
    padding: 80px 0 40px;
    border-top: 1px solid var(--mhfe-border);
}

.mhfe-bottom-slogan {
    font-family: var(--mhfe-font-heading);
    font-size: 32px;
    color: var(--mhfe-accent-light);
    margin-bottom: 48px;
    text-align: center;
}

.mhfe-bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.mhfe-bottom-title {
    font-family: var(--mhfe-font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    color: #fff;
}

.mhfe-bottom-text {
    color: var(--mhfe-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.mhfe-contact-info .mhfe-bottom-text {
    color: #cbd5e1;
}

.mhfe-bottom-nav {
    list-style: none;
}

.mhfe-bottom-nav li {
    margin-bottom: 12px;
}

.mhfe-bottom-nav a {
    color: var(--mhfe-text-muted);
    font-size: 14px;
}

.mhfe-bottom-nav a:hover {
    color: var(--mhfe-accent);
}

.mhfe-bottom-legal {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .mhfe-showcase-zone {
        padding: 80px 0 60px;
    }
    
    .mhfe-section-block {
        padding: 60px 0;
    }
    
    .mhfe-kicker-label::before,
    .mhfe-kicker-label::after {
        display: none;
    }
}
