:root {
    --ashv-bg-dark: #06110f;
    --ashv-bg-alt: #0a1f1b;
    --ashv-bg-card: #0f2e28;
    --ashv-text-main: #f0fdf4;
    --ashv-text-muted: #84ccb9;
    --ashv-accent: #d4af37;
    --ashv-accent-hover: #f3e5ab;
    --ashv-border: rgba(212, 175, 55, 0.2);
    --ashv-font-heading: 'Cormorant Garamond', serif;
    --ashv-font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

.ashv-page-body {
    background-color: var(--ashv-bg-dark);
    color: var(--ashv-text-main);
    font-family: var(--ashv-font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.ashv-global-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.ashv-top-masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 17, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ashv-border);
    padding: 1.25rem 0;
}

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

.ashv-branding-zone {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ashv-brand-icon {
    font-family: var(--ashv-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ashv-accent);
    letter-spacing: 2px;
}

.ashv-brand-typography {
    display: flex;
    flex-direction: column;
}

.ashv-title-main {
    font-family: var(--ashv-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ashv-text-main);
    letter-spacing: 1px;
}

.ashv-title-sub {
    font-size: 0.8rem;
    color: var(--ashv-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ashv-compliance-badge {
    border: 1px solid var(--ashv-accent);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ashv-badge-text {
    font-weight: 600;
    color: var(--ashv-accent);
    font-size: 1rem;
}

/* Hero Section */
.ashv-hero-canvas {
    position: relative;
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, var(--ashv-bg-dark) 0%, var(--ashv-bg-alt) 100%);
    border-bottom: 1px solid var(--ashv-border);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.ashv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--ashv-bg-dark) 100%);
    opacity: 0.8;
}

.ashv-hero-content-box {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.ashv-pre-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--ashv-accent);
    margin-bottom: 1.5rem;
}

.ashv-headline-primary {
    font-family: var(--ashv-font-heading);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--ashv-text-main);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.ashv-hero-paragraph {
    font-size: 1.25rem;
    color: var(--ashv-text-muted);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.ashv-metrics-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid var(--ashv-border);
    padding-top: 3rem;
}

.ashv-metric-node {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ashv-metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ashv-text-muted);
}

.ashv-metric-data {
    font-family: var(--ashv-font-heading);
    font-size: 1.5rem;
    color: var(--ashv-accent);
}

/* Sections */
.ashv-block-section {
    padding: 8rem 0;
}

.ashv-bg-alt {
    background-color: var(--ashv-bg-alt);
}

.ashv-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.ashv-headline-secondary {
    font-family: var(--ashv-font-heading);
    font-size: 3rem;
    color: var(--ashv-accent);
    margin-bottom: 1.5rem;
}

.ashv-intro-text {
    font-size: 1.1rem;
    color: var(--ashv-text-muted);
}

.ashv-tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.ashv-feature-panel {
    background: var(--ashv-bg-card);
    padding: 3rem 2.5rem;
    border: 1px solid var(--ashv-border);
    border-radius: 4px;
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ashv-feature-panel:hover {
    transform: translateY(-10px);
    border-color: var(--ashv-accent);
}

.ashv-panel-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ashv-accent-hover);
    margin-bottom: 1rem;
}

.ashv-panel-title {
    font-family: var(--ashv-font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--ashv-text-main);
}

.ashv-panel-desc {
    color: var(--ashv-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.ashv-panel-bullets {
    list-style: none;
}

.ashv-panel-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ashv-text-main);
    font-size: 0.95rem;
}

.ashv-panel-bullets li::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: var(--ashv-accent);
    font-size: 0.8rem;
    top: 2px;
}

/* Footer */
.ashv-page-footer {
    background-color: #030807;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--ashv-border);
}

.ashv-footer-marquee {
    text-align: center;
    margin-bottom: 5rem;
}

.ashv-footer-marquee h2 {
    font-family: var(--ashv-font-heading);
    font-size: 2.5rem;
    color: var(--ashv-text-main);
    font-weight: 400;
    letter-spacing: 1px;
}

.ashv-footer-matrix {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.ashv-footer-heading {
    font-family: var(--ashv-font-heading);
    color: var(--ashv-accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.ashv-footer-paragraph, .ashv-footer-address {
    color: var(--ashv-text-muted);
    font-size: 0.95rem;
    font-style: normal;
}

.ashv-footer-address a {
    color: var(--ashv-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.ashv-footer-address a:hover {
    color: var(--ashv-accent-hover);
}

.ashv-footer-nav {
    list-style: none;
}

.ashv-footer-nav li {
    margin-bottom: 0.75rem;
}

.ashv-footer-nav a {
    color: var(--ashv-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.ashv-footer-nav a:hover {
    color: var(--ashv-accent);
}

.ashv-footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--ashv-text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .ashv-headline-primary {
        font-size: 3.5rem;
    }
    .ashv-tri-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ashv-footer-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ashv-headline-primary {
        font-size: 2.5rem;
    }
    .ashv-metrics-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .ashv-tri-grid {
        grid-template-columns: 1fr;
    }
    .ashv-footer-matrix {
        grid-template-columns: 1fr;
    }
    .ashv-branding-zone {
        gap: 0.75rem;
    }
    .ashv-title-main {
        font-size: 1.2rem;
    }
}
