/* LeadEx Group — Shared Site Styles */

:root {
    --navy-deep:  #0a1929;
    --navy-mid:   #1a2f42;
    --gold:       #daa520;
    --gold-dark:  #b8860b;
    --cream:      #f9f6ef;
    --white:      #fdfdfc;
    --text-dark:  #1a1a2e;
    --text-body:  #4a5568;
    --text-muted: #6b7c93;
}

/* ─── Shared Buttons ─────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(218, 165, 32, 0.06);
}

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(26, 47, 66, 0.35);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-ghost-dark:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

/* ─── Section Label ──────────────────────────────────────── */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ─── Text Links ─────────────────────────────────────────── */
.text-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s, color 0.2s;
    margin-top: 1.5rem;
}

.text-link:hover {
    gap: 0.65rem;
    color: var(--gold-dark);
}

.text-link-muted {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s, color 0.2s;
    white-space: nowrap;
}

.text-link-muted:hover {
    gap: 0.65rem;
    color: var(--gold-dark);
}

/* ─── Image Placeholders ─────────────────────────────────── */
.img-placeholder {
    background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.img-placeholder-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    color: var(--gold);
    font-size: 0.58rem;
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.img-placeholder-icon {
    width: 40px;
    height: 40px;
    color: rgba(218, 165, 32, 0.3);
    flex-shrink: 0;
}

.img-placeholder-text {
    font-size: 0.75rem;
    color: rgba(218, 165, 32, 0.5);
    text-align: center;
    font-style: italic;
    line-height: 1.65;
    max-width: 230px;
    font-family: 'Inter', sans-serif;
}

/* ─── Shared Page Hero ───────────────────────────────────── */
.page-hero {
    background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    padding: clamp(5.5rem, 12vw, 10rem) 0 clamp(4rem, 9vw, 8rem);
    position: relative;
    overflow: hidden;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.page-hero-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.page-hero-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    color: #fff;
    line-height: 1.08;
    max-width: 700px;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.55);
    max-width: 540px;
    line-height: 1.75;
}

/* ─── Shared CTA Banner ──────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    padding: clamp(5rem, 10vw, 8rem) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip-decor {
    font-family: 'Playfair Display', serif;
    font-size: clamp(10rem, 20vw, 20rem);
    color: rgba(218, 165, 32, 0.035);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cta-strip-inner {
    max-width: 660px;
    margin: 0 auto;
    position: relative;
}

.cta-strip-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-strip-inner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
