/* DMH ENTERPRISE STYLESHEET - FEB 2026 
    IDENTITY: SOVEREIGN ESTATE MANAGEMENT
*/

:root {
    --racing-green: #15332E;
    --deep-green: #0a1b18;
    --luxury-gold: #D4AF37;
    --antique-cream: #FDFCF8;
    --text-dark: #1A2E2A;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--antique-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* NAVIGATION: SOVEREIGN GLASS PROTOCOL */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(253, 252, 248, 0.94);
    backdrop-filter: blur(20px); /* The "Discovery" Blur */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-shield {
    height: 52px;
    width: auto;
}

.logo-text {
    height: 24px;
    width: auto;
    border-left: 1px solid rgba(21, 51, 46, 0.15);
    padding-left: 18px;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--racing-green);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--racing-green);
    color: var(--luxury-gold) !important;
    padding: 14px 32px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--racing-green);
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: transparent;
    color: var(--racing-green) !important;
}

/* HERO: THE CITADEL EXPERIENCE */
.hero {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligned for the "Architect" feel */
    padding: 0 8%;
    background-color: var(--racing-green);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.45; /* Deeper for text legibility */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(21, 51, 46, 0.9) 0%, 
        rgba(21, 51, 46, 0.4) 50%, 
        transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    color: var(--antique-cream);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero h1 em {
    font-style: italic;
    color: var(--luxury-gold);
}

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 50px;
    border-left: 2px solid var(--luxury-gold);
    padding-left: 30px;
}

/* IDENTITY SECTION: THE WHITE STONE PROTOCOL */
.identity-anchor {
    padding: 160px 10%;
    text-align: center;
    background: var(--antique-cream);
}

.protocol-label {
    color: var(--luxury-gold);
    letter-spacing: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.identity-anchor h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--racing-green);
    margin-bottom: 50px;
}

.architect-voice {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-style: italic;
    color: #333;
    font-weight: 300;
    line-height: 2;
}

.vow-badge {
    margin-top: 80px;
    padding: 40px;
    border: 1px solid var(--luxury-gold);
    background: rgba(212, 175, 55, 0.03);
    display: inline-block;
    max-width: 700px;
}

/* COMMAND CENTER GRID: TACTICAL ALIGNMENT */
.command-center { padding: 120px 6%; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 80px;
    align-items: stretch;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(21, 51, 46, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(21, 51, 46, 0.1);
}

.product-info { padding: 60px; }

.product-info img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
    filter: brightness(0.95);
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--racing-green);
    margin-bottom: 25px;
}

.cta-button {
    background: var(--racing-green);
    color: var(--luxury-gold);
    text-align: center;
    padding: 26px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.cta-button:hover { background: var(--deep-green); }

/* FOOTER: THE FIDUCIARY HANDSHAKE */
footer {
    padding: 120px 8%;
    background: var(--racing-green);
    color: rgba(253, 252, 248, 0.8);
    border-top: 5px solid var(--luxury-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--luxury-gold);
    margin-bottom: 30px;
}

.privacy-box {
    border: 1px solid var(--luxury-gold);
    padding: 40px;
    margin-top: 50px;
    background: rgba(212, 175, 55, 0.02);
}

/* RESPONSIVE PROTOCOL */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero h1 { font-size: 3.5rem; }
}