/* Verdant Oak Wealth - Custom Stylesheet */
:root {
    --vow-emerald: #006A4E;
    --vow-gold: #FFC72C;
    --vow-coral: #FF6F61;
    --vow-offwhite: #FDFBF7;
    --vow-dark: #2C3E50;
    --vow-text-main: #4A4A4A;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--vow-text-main);
    background-color: var(--vow-offwhite);
    line-height: 1.6;
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--vow-dark);
    margin-bottom: 1rem;
}

a {
    color: var(--vow-emerald);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--vow-coral);
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.vow-limit-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Button / Action Trigger */
.vow-action-trigger {
    display: inline-block;
    background-color: var(--vow-emerald);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.vow-action-trigger:hover {
    background-color: var(--vow-coral);
    color: #fff;
    transform: translateY(-2px);
}

/* Header */
.vow-masthead {
    position: sticky;
    top: 0;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.vow-masthead-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vow-brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vow-logo-icon {
    background-color: var(--vow-gold);
    color: var(--vow-dark);
    font-weight: bold;
    font-family: var(--font-heading);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.vow-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vow-emerald);
}

.vow-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.vow-nav-list a {
    font-weight: 600;
    color: var(--vow-dark);
}

.vow-nav-list a:hover {
    color: var(--vow-coral);
}

.vow-nav-btn {
    color: #fff !important;
}

/* Hero */
#vow-hero-stage {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.vow-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.vow-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 251, 247, 0.95) 0%, rgba(253, 251, 247, 0.6) 50%, rgba(253, 251, 247, 0.1) 100%);
    z-index: -1;
}

.vow-hero-content {
    max-width: 600px;
    margin: 0;
}

.vow-headline-main {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--vow-emerald);
    margin-bottom: 20px;
}

.vow-sub-headline {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--vow-dark);
}

/* About / Story */
.vow-dense-section {
    padding: 100px 0 80px;
    background-color: #fff;
}

.vow-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.vow-story-text p {
    margin-bottom: 1.5rem;
}

.vow-metrics-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.vow-metric-item {
    display: flex;
    flex-direction: column;
}

.vow-counter, .vow-metric-suffix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vow-gold);
    line-height: 1;
}

.vow-metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--vow-text-main);
    margin-top: 5px;
}

.vow-story-visual {
    position: relative;
}

.vow-story-img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vow-certification-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--vow-emerald);
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    font-family: var(--font-heading);
    box-shadow: 0 10px 20px rgba(0,106,78,0.2);
}

.vow-certification-badge p {
    margin: 0;
    font-weight: bold;
}

/* Solutions */
.vow-asymmetric-pad {
    padding: 120px 0 90px;
}

.vow-text-center {
    text-align: center;
}

.vow-section-intro {
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.vow-solutions-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vow-solution-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.vow-solution-card:hover {
    transform: translateY(-10px);
}

.vow-card-offset {
    transform: translateY(30px);
}

.vow-card-offset:hover {
    transform: translateY(20px);
}

.vow-card-img {
    height: 220px;
}

.vow-card-body {
    padding: 30px;
}

.vow-benefit-list {
    list-style: none;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.vow-benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.vow-benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--vow-coral);
    font-weight: bold;
}

/* Testimonials */
.vow-feedback-zone {
    background-color: var(--vow-emerald);
    padding: 100px 0;
    color: #fff;
}

.vow-light-text {
    color: #fff !important;
}

.vow-testimonial-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.vow-quote-box {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--vow-gold);
}

.vow-quote-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vow-quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vow-author-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--vow-gold);
}

.vow-quote-author strong {
    display: block;
    font-family: var(--font-heading);
}

.vow-quote-author span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact */
.vow-contact-area {
    padding: 120px 0;
    background-color: #fff;
}

.vow-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.vow-contact-info p {
    margin-bottom: 20px;
}

.vow-form-container {
    background: var(--vow-offwhite);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.vow-input-group {
    margin-bottom: 20px;
}

.vow-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--vow-dark);
}

.vow-input-group input, .vow-input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.vow-input-group input:focus, .vow-input-group textarea:focus {
    outline: none;
    border-color: var(--vow-emerald);
    box-shadow: 0 0 0 2px rgba(0,106,78,0.1);
}

.vow-submit-btn {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 10px;
}

.vow-tiny-disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* Footer */
.vow-site-footer {
    background-color: var(--vow-dark);
    color: #a0aec0;
    padding: 80px 0 30px;
}

.vow-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.vow-footer-brand p {
    margin-top: 15px;
}

.vow-footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

.vow-footer-links ul {
    list-style: none;
}

.vow-footer-links li {
    margin-bottom: 10px;
}

.vow-footer-links a {
    color: #a0aec0;
}

.vow-footer-links a:hover {
    color: var(--vow-gold);
}

.vow-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.85rem;
}

/* Responsive Leakage & Adjustments */
@media (max-width: 992px) {
    .vow-story-grid, .vow-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vow-solutions-layout, .vow-testimonial-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .vow-card-offset {
        transform: none;
    }
    .vow-headline-main {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .vow-nav-list {
        display: none; /* Simplified for demo realism */
    }
    .vow-solutions-layout, .vow-testimonial-wrap, .vow-footer-grid {
        grid-template-columns: 1fr;
    }
    .vow-metrics-row {
        flex-direction: column;
        gap: 20px;
    }
    .vow-hero-overlay {
        background: rgba(253, 251, 247, 0.85);
    }
    .vow-certification-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -20px;
        text-align: center;
    }
}
