/* Lockhavene Unique Stylesheet */
:root {
    --lkhv-bg-main: #0a0d14;
    --lkhv-bg-surface: #131824;
    --lkhv-bg-surface-elevated: #1a2030;
    --lkhv-color-gold: #d4af37;
    --lkhv-color-gold-bright: #f0c950;
    --lkhv-color-text: #e0e4eb;
    --lkhv-color-muted: #8b95a8;
    --lkhv-font-heading: 'Playfair Display', serif;
    --lkhv-font-base: 'Inter', sans-serif;
    --lkhv-border-subtle: rgba(212, 175, 55, 0.15);
    --lkhv-transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

body.lkhv-body-wrap {
    margin: 0;
    padding: 0;
    background-color: var(--lkhv-bg-main);
    color: var(--lkhv-color-text);
    font-family: var(--lkhv-font-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .lkhv-brand-title, .lkhv-base-heading {
    font-family: var(--lkhv-font-heading);
    font-weight: 400;
    margin: 0;
}

p {
    margin: 0 0 1rem 0;
}

a {
    color: var(--lkhv-color-gold);
    text-decoration: none;
    transition: color var(--lkhv-transition-smooth);
}

a:hover {
    color: var(--lkhv-color-gold-bright);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header Masthead */
.lkhv-top-masthead {
    background-color: rgba(10, 13, 20, 0.95);
    border-bottom: 1px solid var(--lkhv-border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.lkhv-masthead-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.lkhv-brand-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lkhv-color-gold);
    letter-spacing: 2px;
}

.lkhv-brand-title {
    font-size: 1.5rem;
    color: var(--lkhv-color-text);
    flex-grow: 1;
    text-align: center;
    letter-spacing: 1px;
}

.lkhv-age-badge {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--lkhv-color-gold);
    color: var(--lkhv-color-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Main Showcase (Hero) */
.lkhv-showcase-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.lkhv-showcase-label {
    display: inline-block;
    color: var(--lkhv-color-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.lkhv-showcase-heading {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.lkhv-showcase-desc {
    font-size: 1.25rem;
    color: var(--lkhv-color-muted);
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.lkhv-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.lkhv-info-tile {
    background-color: var(--lkhv-bg-surface);
    border: 1px solid var(--lkhv-border-subtle);
    padding: 2rem;
    border-radius: 8px;
    transition: transform var(--lkhv-transition-smooth), background-color var(--lkhv-transition-smooth);
}

.lkhv-info-tile:hover {
    transform: translateY(-5px);
    background-color: var(--lkhv-bg-surface-elevated);
}

.lkhv-tile-title {
    font-family: var(--lkhv-font-base);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lkhv-color-gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lkhv-tile-text {
    font-size: 0.95rem;
    color: var(--lkhv-color-muted);
    margin: 0;
}

/* Content Sections */
.lkhv-content-block {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--lkhv-border-subtle);
}

.lkhv-block-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.lkhv-block-intro {
    text-align: center;
    color: var(--lkhv-color-muted);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

.lkhv-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.lkhv-feature-card {
    background-color: var(--lkhv-bg-surface);
    border: 1px solid var(--lkhv-border-subtle);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--lkhv-transition-smooth), box-shadow var(--lkhv-transition-smooth);
}

.lkhv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--lkhv-color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--lkhv-transition-smooth);
}

.lkhv-feature-card:hover {
    border-color: var(--lkhv-color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lkhv-feature-card:hover::before {
    transform: scaleX(1);
}

.lkhv-card-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lkhv-color-gold);
    margin-bottom: 1rem;
    display: block;
}

.lkhv-card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.lkhv-card-desc {
    color: var(--lkhv-color-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.lkhv-card-list {
    border-top: 1px solid var(--lkhv-border-subtle);
    padding-top: 1.5rem;
}

.lkhv-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--lkhv-color-text);
    font-size: 0.95rem;
}

.lkhv-list-item::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lkhv-color-gold);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Footer Base */
.lkhv-bottom-base {
    background-color: #06080c;
    border-top: 1px solid var(--lkhv-border-subtle);
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
}

.lkhv-base-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.lkhv-base-heading {
    font-size: 2.5rem;
    color: var(--lkhv-color-gold);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 1px;
}

.lkhv-base-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.lkhv-col-title {
    font-family: var(--lkhv-font-base);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lkhv-col-text {
    color: var(--lkhv-color-muted);
    font-size: 0.9rem;
}

.lkhv-address-block {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lkhv-addr-item {
    color: var(--lkhv-color-muted);
    font-size: 0.9rem;
}

.lkhv-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lkhv-nav-link {
    color: var(--lkhv-color-muted);
    font-size: 0.9rem;
}

.lkhv-nav-link:hover {
    color: var(--lkhv-color-gold);
}

.lkhv-base-copy {
    text-align: center;
    color: var(--lkhv-color-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lkhv-border-subtle);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .lkhv-brand-title {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .lkhv-showcase-heading {
        font-size: 2.5rem;
    }
    
    .lkhv-block-heading {
        font-size: 2rem;
    }
    
    .lkhv-feature-card {
        padding: 2rem 1.5rem;
    }
}
