/* 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(--plum-950), var(--plum-800));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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(20, 35, 31, .55) 0%, rgba(20, 35, 31, .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: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--sage-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; }
}
