/* File: wp-content/themes/log-core/assets/css/log-contact.css */
/* Source: contact_us_4.html — simple banner hero site-switch redesign */
/* Depends on: design-tokens.css (--plum-*, --sage-*, --paper, --ink-*, etc.) */
/* Fonts: Cormorant Garamond + Manrope */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Page background ── */
body.page-id-1361,
body.page-id-1361 .site,
body.page-id-1361 .site-content {
    background: var(--paper) !important;
}

/* ── Keyframes ── */
@keyframes log-co-heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ── Scroll reveal ── */
.log-co-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.log-co-reveal.log-co-in { opacity: 1; transform: translateY(0); }

/* ── Section eyebrow (shared across sections) ── */
.log-co-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sage-700);
    margin-bottom: 8px;
}

.log-co-section-eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--sage-600);
    display: inline-block;
}

/* ═══════════════════════════════════════════════════
   BANNER HERO
   ═══════════════════════════════════════════════════ */
.log-co-cthero {
    position: relative;
    height: 280px;
    background: linear-gradient(160deg, var(--ink-950), var(--ink-900));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* multi-point gold ambient layer (matches delivery-proof hero) */
.log-co-cthero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse 60% 55% at 8% 10%, var(--gold-glass-20) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 88% 40%, var(--gold-glass-10) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 50% 100%, var(--gold-glass-10) 0%, transparent 60%),
        linear-gradient(160deg, var(--gold-glass-06) 0%, transparent 50%);
}

/* subtle grid texture (matches delivery-proof hero) */
.log-co-cthero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: linear-gradient(var(--gold-glass-04) 1px, transparent 1px), linear-gradient(90deg, var(--gold-glass-04) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* ── Decorative rising particles (matches delivery-proof hero) ── */
.ct-particle { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0; z-index: 1; animation: ctParticleRise var(--dur, 8s) ease-in-out var(--delay, 0s) infinite; }
.ct-particle.glow { box-shadow: 0 0 6px 2px var(--gold-glass-55); }
.ct-particle.glow-lg { box-shadow: 0 0 10px 4px var(--gold-glass-40); }

@keyframes ctParticleRise {
    0%   { opacity: 0; transform: translateY(0) scale(.5); }
    10%  { opacity: 1; }
    75%  { opacity: .5; }
    100% { opacity: 0; transform: translateY(-200px) scale(1.2); }
}

@media(max-width:640px) { .ct-particle { display: none; } }

.log-co-cthero-illustration {
    position: absolute;
    inset: 0;
}

.log-co-cthero-illustration svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 170%);
    height: auto;
    opacity: .35;
}

.log-co-cthero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, .55) 0%, rgba(5, 5, 5, .75) 100%);
}

.log-co-cthero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.log-co-cthero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glass-10);
    border: 1px solid var(--gold-glass-35);
    color: var(--gold-400);
    padding: 7px 15px;
    border-radius: var(--r-pill);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.log-co-cthero-inner h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    color: #fff;
    margin-top: 14px;
}

@media (max-width: 640px) {
    .log-co-cthero { height: 220px; }
}
