/*
Theme Name: Foundry Valuation
Theme URI: https://foundryamc.com
Author: Foundry Valuation
Author URI: https://foundryamc.com
Description: A premium custom WordPress theme for Foundry Valuation — An AMC Forged for Performance. Features dark emerald green and gold color scheme with full Theme Customizer support for editing all content sections.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foundry-valuation
Tags: one-page, custom-logo, custom-colors, featured-images, theme-options

Foundry Valuation WordPress Theme
An AMC Forged for Performance
*/

/* ═══════════ CSS VARIABLES ═══════════ */
:root {
    /* Primary - Dark Emerald Green */
    --fv-bg: #0a2e2a;
    --fv-bg-dark: #061f1c;
    --fv-bg-card: #0d3530;
    --fv-bg-alt: #0b322d;
    --fv-emerald: #0f4a43;
    --fv-emerald-light: #1a6b61;
    --fv-emerald-bright: #2a8a7e;
    --fv-emerald-muted: #0d3d37;

    /* Accent - Gold / Copper */
    --fv-gold: #c9a33e;
    --fv-gold-light: #e2c36a;
    --fv-gold-bright: #f0d680;
    --fv-gold-dark: #9a7a24;
    --fv-gold-muted: #7a6528;
    --fv-copper: #b87333;
    --fv-copper-light: #d4956a;

    /* Neutrals */
    --fv-cream: #f5edd6;
    --fv-cream-dim: #c4b898;
    --fv-white: #faf6ed;
    --fv-text: #a8c5c0;
    --fv-text-dim: #6a9b94;
    --fv-text-light: #d0e0dc;

    /* Borders & Effects */
    --fv-border: rgba(201, 163, 62, .12);
    --fv-border-hover: rgba(201, 163, 62, .3);
    --fv-border-emerald: rgba(42, 138, 126, .2);
    --fv-glow: rgba(201, 163, 62, .06);
    --fv-glow-emerald: rgba(42, 138, 126, .08);

    /* Typography */
    --fv-font-heading: 'Cormorant Garamond', serif;
    --fv-font-body: 'Outfit', sans-serif;

    /* Transitions */
    --fv-transition: .3s cubic-bezier(.22, 1, .36, 1);
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--fv-font-body);
    background: var(--fv-bg);
    color: var(--fv-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.fv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Grain Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .4;
}

/* ═══════════ TYPOGRAPHY ═══════════ */
.fv-section-label {
    font-family: var(--fv-font-body);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--fv-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fv-section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--fv-gold);
}

.fv-section-title {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--fv-cream);
    line-height: 1.15;
    margin-bottom: 20px;
}

.fv-section-title em {
    font-style: italic;
    color: var(--fv-gold-light);
}

/* ═══════════ HEADER ═══════════ */
.fv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 46, 42, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fv-border-emerald);
    transition: padding .3s, background .3s;
}

.fv-header.scrolled {
    padding: 10px 0;
    background: rgba(6, 31, 28, .97);
}

.fv-header .fv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fv-header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Logo sizing controlled via Customizer → Foundry Theme Options → Logo & Header Settings */
.fv-header-logo img,
.fv-header-logo img.fv-site-logo {
    height: 48px; /* fallback — overridden by dynamic inline CSS */
    width: auto;
    object-fit: contain;
    transition: height .3s ease;
}

.fv-header-logo-text {
    display: flex;
    flex-direction: column;
}

.fv-header-logo-name {
    font-family: var(--fv-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fv-cream);
    letter-spacing: .04em;
    line-height: 1.1;
}

.fv-header-logo-sub {
    font-size: .55rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--fv-gold-muted);
    margin-top: 2px;
}

.fv-header-logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Navigation */
.fv-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fv-nav a {
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fv-text-light);
    transition: color .25s;
    position: relative;
}

.fv-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fv-gold);
    transition: width .3s;
}

.fv-nav a:hover {
    color: var(--fv-gold-light);
}

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

.fv-nav-cta {
    padding: 10px 22px !important;
    font-size: .73rem !important;
    font-weight: 600 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--fv-bg) !important;
    background: linear-gradient(135deg, var(--fv-gold), var(--fv-gold-light));
    border-radius: 6px;
    transition: transform .25s, box-shadow .25s;
}

.fv-nav-cta::after { display: none !important; }

.fv-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 163, 62, .25);
    color: var(--fv-bg) !important;
}

/* Mobile Toggle */
.fv-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.fv-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fv-gold);
    margin: 5px 0;
    border-radius: 1px;
    transition: .3s;
}

/* ═══════════ HERO ═══════════ */
.fv-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
}

.fv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 75% 35%, rgba(42, 138, 126, .1), transparent),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 163, 62, .05), transparent);
}

.fv-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 138, 126, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 138, 126, .04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.fv-hero .fv-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.fv-hero-content { max-width: 560px; }

.fv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--fv-border-emerald);
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fv-gold);
    margin-bottom: 28px;
    background: var(--fv-glow-emerald);
}

.fv-hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fv-emerald-bright);
    animation: fvPulse 2s infinite;
}

@keyframes fvPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.fv-hero h1 {
    font-family: var(--fv-font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--fv-cream);
    line-height: 1.1;
    margin-bottom: 22px;
}

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

.fv-hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--fv-text);
    margin-bottom: 36px;
    max-width: 480px;
}

.fv-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.fv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--fv-font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fv-bg);
    background: linear-gradient(135deg, var(--fv-gold), var(--fv-gold-light));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
}

.fv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 163, 62, .3);
}

.fv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--fv-font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fv-gold);
    background: transparent;
    border: 1px solid var(--fv-border-hover);
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
}

.fv-btn-secondary:hover {
    background: var(--fv-glow);
    border-color: var(--fv-gold);
}

/* Hero Image */
.fv-hero-visual { position: relative; }

.fv-hero-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--fv-border-emerald);
    background: var(--fv-bg-card);
    position: relative;
    aspect-ratio: 16/11;
}

.fv-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 46, 42, .3) 0%, transparent 50%);
    pointer-events: none;
}

.fv-hero-float {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid var(--fv-border-emerald);
    border-radius: 50%;
    top: -16px;
    right: -24px;
    animation: fvFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.fv-hero-float::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(42, 138, 126, .08);
    border-radius: 50%;
}

@keyframes fvFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 12px); }
}

/* ═══════════ STATS ═══════════ */
.fv-stats {
    padding: 56px 0;
    border-top: 1px solid var(--fv-border-emerald);
    border-bottom: 1px solid var(--fv-border-emerald);
    background: var(--fv-bg-alt);
}

.fv-stats .fv-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fv-stat {
    text-align: center;
    padding: 14px 8px;
}

.fv-stat-num {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--fv-gold-light);
    line-height: 1;
}

.fv-stat-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fv-text-dim);
    margin-top: 8px;
}

/* ═══════════ SERVICES ═══════════ */
.fv-services {
    padding: 100px 0;
    position: relative;
}

.fv-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fv-border-emerald), transparent);
}

.fv-services-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.fv-services-head .fv-section-label {
    justify-content: center;
}

.fv-services-head .fv-section-label::before { display: none; }

.fv-services-head p {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--fv-text-dim);
    margin-top: 8px;
}

.fv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fv-svc-card {
    background: var(--fv-bg-card);
    border: 1px solid var(--fv-border-emerald);
    border-radius: 14px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.fv-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fv-emerald-muted), var(--fv-gold), var(--fv-emerald-muted));
    opacity: 0;
    transition: opacity .35s;
    z-index: 2;
}

.fv-svc-card:hover {
    border-color: var(--fv-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.fv-svc-card:hover::before { opacity: 1; }

.fv-svc-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.fv-svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.fv-svc-card:hover .fv-svc-img img { transform: scale(1.05); }

.fv-svc-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, var(--fv-bg-card));
}

.fv-svc-body {
    padding: 22px 24px 28px;
}

.fv-svc-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fv-border-emerald);
    border-radius: 10px;
    margin-bottom: 14px;
    background: var(--fv-glow-emerald);
    color: var(--fv-gold);
}

.fv-svc-card h3 {
    font-family: var(--fv-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--fv-cream);
    margin-bottom: 8px;
}

.fv-svc-card p {
    font-size: .8rem;
    line-height: 1.7;
    color: var(--fv-text-dim);
}

/* ═══════════ ABOUT ═══════════ */
.fv-about {
    padding: 100px 0;
    position: relative;
}

.fv-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fv-border-emerald), transparent);
}

.fv-about .fv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.fv-about-content .fv-section-title { margin-bottom: 20px; }

.fv-about-text {
    font-size: .9rem;
    line-height: 1.85;
    color: var(--fv-text);
    margin-bottom: 18px;
}

.fv-about-highlight {
    padding: 22px 24px;
    border-left: 2px solid var(--fv-gold);
    background: rgba(201, 163, 62, .03);
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
}

.fv-about-highlight p {
    font-family: var(--fv-font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--fv-cream-dim);
    line-height: 1.6;
}

.fv-about-visual { position: relative; }

.fv-about-img-main {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--fv-border-emerald);
    background: var(--fv-bg-card);
    position: relative;
}

.fv-about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-about-img-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 190px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--fv-bg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
    background: var(--fv-bg-card);
}

.fv-about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-about-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 10px 16px;
    background: rgba(10, 46, 42, .88);
    border: 1px solid var(--fv-border-emerald);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.fv-about-badge-num {
    font-family: var(--fv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fv-gold-light);
    line-height: 1;
}

.fv-about-badge-text {
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fv-text-dim);
}

/* ═══════════ COVERAGE MAP ═══════════ */
.fv-coverage {
    padding: 100px 0;
    background: var(--fv-bg-alt);
    position: relative;
}

.fv-coverage::before,
.fv-coverage::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fv-border-emerald), transparent);
}

.fv-coverage::before { top: 0; }
.fv-coverage::after { bottom: 0; }

.fv-coverage .fv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.fv-coverage-content .fv-section-title { margin-bottom: 16px; }

.fv-coverage-text {
    font-size: .9rem;
    line-height: 1.85;
    color: var(--fv-text);
    margin-bottom: 20px;
}

.fv-coverage-map {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--fv-border-emerald);
    background: var(--fv-white);
}

.fv-coverage-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══════════ WHY US ═══════════ */
.fv-why {
    padding: 100px 0;
    position: relative;
}

.fv-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fv-border-emerald), transparent);
}

.fv-why-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.fv-why-head .fv-section-label {
    justify-content: center;
}

.fv-why-head .fv-section-label::before { display: none; }

.fv-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fv-why-item {
    text-align: center;
    padding: 32px 18px;
    border: 1px solid var(--fv-border-emerald);
    border-radius: 12px;
    background: var(--fv-bg-card);
    transition: all .3s;
}

.fv-why-item:hover {
    border-color: var(--fv-border-hover);
    transform: translateY(-3px);
}

.fv-why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fv-border-emerald);
    border-radius: 10px;
    margin: 0 auto 14px;
    color: var(--fv-gold);
    background: var(--fv-glow-emerald);
}

.fv-why-item h4 {
    font-family: var(--fv-font-heading);
    font-size: .95rem;
    font-weight: 600;
    color: var(--fv-cream);
    line-height: 1.3;
    margin-bottom: 8px;
}

.fv-why-item p {
    font-size: .78rem;
    line-height: 1.6;
    color: var(--fv-text-dim);
}

/* ═══════════ LEADERSHIP ═══════════ */
.fv-leader {
    padding: 100px 0;
    background: var(--fv-bg-alt);
    position: relative;
}

.fv-leader::before,
.fv-leader::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fv-border), transparent);
}

.fv-leader::before { top: 0; }
.fv-leader::after { bottom: 0; }

.fv-leader-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.fv-leader-head .fv-section-label {
    justify-content: center;
}

.fv-leader-head .fv-section-label::before {
    display: none;
}

.fv-leader-subtitle {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--fv-text-dim);
    margin-top: 8px;
}

.fv-leader-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.fv-leader-card {
    background: var(--fv-bg-card);
    border: 1px solid var(--fv-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s;
    position: relative;
}

.fv-leader-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fv-gold-dark), var(--fv-gold-light), var(--fv-gold-dark));
    opacity: 0;
    transition: opacity .35s;
    z-index: 2;
}

.fv-leader-card:hover {
    border-color: var(--fv-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.fv-leader-card:hover::before { opacity: 1; }

.fv-leader-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--fv-bg-alt);
}

.fv-leader-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s;
}

.fv-leader-card:hover .fv-leader-card-img img {
    transform: scale(1.03);
}

.fv-leader-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--fv-bg-card));
    pointer-events: none;
}

.fv-leader-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fv-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--fv-gold);
}

.fv-leader-card-body {
    padding: 24px 28px 32px;
}

.fv-leader-name {
    font-family: var(--fv-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fv-cream);
    line-height: 1.2;
}

.fv-leader-role {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fv-gold);
    margin-top: 6px;
}

.fv-leader-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: .78rem;
    color: var(--fv-cream-dim);
    text-decoration: none;
    transition: color .25s;
}

.fv-leader-email:hover {
    color: var(--fv-gold-light);
}

.fv-leader-email svg {
    color: var(--fv-gold);
    opacity: .6;
    flex-shrink: 0;
}

.fv-leader-bio {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--fv-text-dim);
    margin-top: 14px;
}
/* ═══════════ CTA ═══════════ */
.fv-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.fv-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(42, 138, 126, .08), transparent);
}

.fv-cta .fv-container {
    position: relative;
    z-index: 2;
}

.fv-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    background: var(--fv-bg-card);
    border: 1px solid var(--fv-border-emerald);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fv-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fv-gold), transparent);
}

.fv-cta-box .fv-section-label { justify-content: center; }
.fv-cta-box .fv-section-label::before { display: none; }
.fv-cta-box .fv-section-title { margin-bottom: 14px; }

.fv-cta-box > p {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--fv-text-dim);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.fv-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.fv-cta-contacts {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.fv-cta-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fv-text-light);
    font-size: .82rem;
}

.fv-cta-contact svg {
    color: var(--fv-gold);
    opacity: .6;
    flex-shrink: 0;
}

/* CTA — Two-person contact grid */
.fv-cta-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0 0;
    text-align: left;
}

.fv-cta-person {
    padding: 24px;
    border: 1px solid var(--fv-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
    transition: border-color .3s;
}

.fv-cta-person:hover {
    border-color: var(--fv-border-hover);
}

.fv-cta-person-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fv-gold);
    margin-bottom: 8px;
}

.fv-cta-person-name {
    font-family: var(--fv-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fv-cream);
    margin-bottom: 14px;
}

.fv-cta-person-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-cta-person-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--fv-cream-dim);
    transition: color .25s;
    text-decoration: none;
}

.fv-cta-person-links a:hover {
    color: var(--fv-gold-light);
}

.fv-cta-person-links a svg {
    color: var(--fv-gold);
    opacity: .6;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .fv-cta-two-col {
        grid-template-columns: 1fr;
    }
}
/* ═══════════ FOOTER ═══════════ */
.fv-footer {
    padding: 40px 0 28px;
    border-top: 1px solid var(--fv-border-emerald);
    background: var(--fv-bg-dark);
}

.fv-footer .fv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.fv-footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fv-footer-logo img {
    height: 32px;
    width: auto;
}

.fv-footer-logo-text {
    font-family: var(--fv-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fv-cream-dim);
}

.fv-footer-right {
    font-size: .7rem;
    color: var(--fv-text-dim);
    letter-spacing: .04em;
}

.fv-footer-tagline {
    text-align: center;
    width: 100%;
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--fv-border-emerald);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fv-gold-muted);
}

/* ═══════════ ANIMATIONS ═══════════ */
.fv-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.fv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ WORDPRESS DEFAULTS ═══════════ */
.wp-block-image img { max-width: 100%; height: auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }

.page-content,
.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 32px 80px;
}

.entry-content p {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--fv-text);
    margin-bottom: 1.5em;
}

.entry-content h2 {
    font-family: var(--fv-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--fv-cream);
    margin: 2em 0 .5em;
}

.entry-content h3 {
    font-family: var(--fv-font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--fv-cream);
    margin: 1.5em 0 .5em;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .fv-hero .fv-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fv-hero-content { max-width: 100%; }
    .fv-hero-desc { margin-left: auto; margin-right: auto; }
    .fv-hero-actions { justify-content: center; }
    .fv-hero-visual {
        margin-top: 40px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .fv-services-grid { grid-template-columns: 1fr 1fr; }
    .fv-about .fv-container { grid-template-columns: 1fr; }
    .fv-about-img-float { right: 12px; bottom: -14px; }
    .fv-coverage .fv-container { grid-template-columns: 1fr; }
    .fv-coverage-map { max-width: 560px; margin: 0 auto; }
    .fv-why-grid { grid-template-columns: repeat(3, 1fr); }
    .fv-leader-grid { max-width: 100%; }
    .fv-stats .fv-container { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .fv-container { padding: 0 20px; }
    .fv-stats .fv-container { grid-template-columns: 1fr 1fr; }
    .fv-services-grid { grid-template-columns: 1fr 1fr; }
    .fv-why-grid { grid-template-columns: 1fr 1fr; }
    .fv-cta-box { padding: 48px 24px; }
    .fv-cta-contacts { flex-direction: column; align-items: center; gap: 12px; }
    .fv-footer .fv-container { justify-content: center; text-align: center; }
    .fv-about-img-main { height: 320px; }
}

@media (max-width: 640px) {
    .fv-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(6, 31, 28, .97);
        padding: 24px 20px;
        border-bottom: 1px solid var(--fv-border-emerald);
        gap: 18px;
    }
    .fv-nav.open { display: flex; }
    .fv-menu-toggle { display: block; }
    .fv-services-grid { grid-template-columns: 1fr; }
    .fv-why-grid { grid-template-columns: 1fr 1fr; }
    .fv-hero { padding: 120px 0 60px; min-height: auto; }
    .fv-hero h1 { font-size: 2rem; }
    .fv-hero-desc { font-size: .9rem; }
    .fv-btn-primary, .fv-btn-secondary { padding: 12px 22px; font-size: .75rem; }
    .fv-section-title { font-size: 1.6rem; }
    .fv-services, .fv-about, .fv-coverage, .fv-why, .fv-leader, .fv-cta { padding: 72px 0; }
    .fv-about-img-main { height: 260px; }
    .fv-about-img-float { width: 140px; height: 110px; }
    .fv-leader-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 400px) {
    .fv-hero-actions { flex-direction: column; align-items: stretch; }
    .fv-btn-primary, .fv-btn-secondary { justify-content: center; }
    .fv-stats .fv-container { grid-template-columns: 1fr 1fr; }
    .fv-why-grid { grid-template-columns: 1fr; }
    .fv-cta-actions { flex-direction: column; align-items: stretch; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--fv-bg); }
::-webkit-scrollbar-thumb { background: var(--fv-emerald-light); border-radius: 3px; }
