/* ═══════════════════════════════════════════════════════════════
   JR HOLMES HR CONSULTING GROUP — THE AUTHORITY
   Full-Screen Coming Soon Landing Page
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-1: #030711;
    --bg-2: #0A1128;
    --bg-3: #111B36;
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-04: rgba(255, 255, 255, 0.04);
    --gold: #C9A84C;
    --gold-bright: #E8D48B;
    --gold-deep: #8B6914;
    --gold-50: rgba(201, 168, 76, 0.5);
    --gold-30: rgba(201, 168, 76, 0.3);
    --gold-20: rgba(201, 168, 76, 0.2);
    --gold-10: rgba(201, 168, 76, 0.1);
    --gold-05: rgba(201, 168, 76, 0.05);
    --blue-subtle: rgba(30, 58, 138, 0.06);

    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--bg-1);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════
   LAYERED BACKGROUNDS
   ═══════════════════════════════════════════════════════════════ */
.bg-base {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 60% at 50% 0%, rgba(10, 17, 40, 0.9), transparent),
        radial-gradient(ellipse 80% 80% at 15% 85%, var(--gold-05), transparent),
        radial-gradient(ellipse 70% 60% at 85% 40%, var(--blue-subtle), transparent),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(17, 27, 54, 0.6), transparent),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
    pointer-events: none;
}

.bg-radial {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle 500px at 50% 40%, var(--gold-10), transparent),
        radial-gradient(circle 400px at 25% 70%, rgba(37, 99, 235, 0.04), transparent),
        radial-gradient(circle 350px at 75% 30%, var(--gold-05), transparent);
    pointer-events: none;
    transition: transform 0.3s ease-out;
}

.bg-lines {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--gold-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold-05) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.bg-grain {
    position: fixed;
    inset: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   CORNER ACCENTS
   ═══════════════════════════════════════════════════════════════ */
.corner {
    position: fixed;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 10;
}

.corner::before,
.corner::after {
    content: '';
    position: absolute;
    background: var(--gold-20);
}

.corner-tl {
    top: 28px;
    left: 28px;
}

.corner-tl::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
}

.corner-tl::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 40px;
}

.corner-tr {
    top: 28px;
    right: 28px;
}

.corner-tr::before {
    top: 0;
    right: 0;
    width: 40px;
    height: 1px;
}

.corner-tr::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 40px;
}

.corner-bl {
    bottom: 28px;
    left: 28px;
}

.corner-bl::before {
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
}

.corner-bl::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 40px;
}

.corner-br {
    bottom: 28px;
    right: 28px;
}

.corner-br::before {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 1px;
}

.corner-br::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 40px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 40px;
}

.hero-inner {
    text-align: center;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED LOGO
   ═══════════════════════════════════════════════════════════════ */
.logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.logo-ring-outer {
    width: 100%;
    height: 100%;
    border-color: var(--gold-10);
    animation: ring-spin 25s linear infinite;
}

.logo-ring-outer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold), 0 0 24px var(--gold-50);
}

.logo-ring-mid {
    width: 88%;
    height: 88%;
    border-color: var(--gold-05);
    animation: ring-spin 18s linear infinite reverse;
}

.logo-ring-mid::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 15%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px var(--gold);
}

.logo-ring-inner {
    width: 76%;
    height: 76%;
    border-color: var(--gold-05);
    border-style: dashed;
    animation: ring-spin 30s linear infinite;
}

@keyframes ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-10), transparent 70%);
    filter: blur(30px);
    animation: glow-breath 5s ease-in-out infinite;
}

@keyframes glow-breath {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.logo-video {
    width: 180px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--gold-20)) drop-shadow(0 0 60px var(--gold-10));
}

/* ═══════════════════════════════════════════════════════════════
   COMING SOON
   ═══════════════════════════════════════════════════════════════ */
.coming-soon {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 44px;
}

.cs-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-30));
}

.cs-line:last-child {
    background: linear-gradient(90deg, var(--gold-30), transparent);
}

.cs-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-50);
    animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.cs-text {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   HEADLINE
   ═══════════════════════════════════════════════════════════════ */
.headline {
    margin-bottom: 28px;
    line-height: 1.1;
}

.headline-top {
    display: block;
    font-family: var(--serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.headline-bottom {
    display: block;
    font-family: var(--serif);
    font-size: 3.8rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   ORNAMENTAL DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.ornament {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.orn-wing {
    width: 80px;
    height: 1px;
    position: relative;
}

.orn-wing-l {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.orn-wing-r {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.orn-wing::before {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 9px;
}

.orn-wing-l::before {
    right: 0;
    background: var(--gold);
}

.orn-wing-r::before {
    left: 0;
    background: var(--gold);
}

.orn-wing::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 1px;
    height: 5px;
}

.orn-wing-l::after {
    right: 12px;
    background: var(--gold-30);
}

.orn-wing-r::after {
    left: 12px;
    background: var(--gold-30);
}

.orn-diamond {
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 16px var(--gold-50), 0 0 40px var(--gold-20);
    animation: diamond-glow 3.5s ease-in-out infinite;
}

@keyframes diamond-glow {

    0%,
    100% {
        box-shadow: 0 0 16px var(--gold-50), 0 0 40px var(--gold-20);
    }

    50% {
        box-shadow: 0 0 24px var(--gold), 0 0 60px var(--gold-30);
    }
}

/* ═══════════════════════════════════════════════════════════════
   TAGLINE
   ═══════════════════════════════════════════════════════════════ */
.tagline {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--white-50);
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   DESCRIPTION
   ═══════════════════════════════════════════════════════════════ */
.description {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--white-30);
    max-width: 520px;
    margin-bottom: 44px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.services-row {
    width: 100vw;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 24px 0;
    position: relative;
    margin-bottom: 44px;
}

.services-row::before,
.services-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.services-row::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-1), transparent);
}

.services-row::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--bg-1));
}

.services-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.svc-item {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-15);
    padding: 0 20px;
    transition: color 0.3s ease;
}

.svc-sep {
    font-size: 0.4rem;
    color: var(--gold-30);
    padding: 0 4px;
}

.services-row:hover .svc-item {
    color: var(--white-30);
}

.services-row:hover .svc-sep {
    color: var(--gold-50);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BUTTON
   ═══════════════════════════════════════════════════════════════ */
.cta-group {
    margin-bottom: 56px;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    padding: 22px 56px;
    border: 1px solid var(--gold-30);
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s var(--smooth);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-10), transparent);
    transition: left 0.8s ease;
}

.cta-btn:hover .cta-shimmer {
    left: 100%;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn:hover {
    border-color: var(--gold);
    background: var(--gold-05);
    box-shadow:
        0 0 40px var(--gold-10),
        0 0 80px var(--gold-05),
        inset 0 0 40px var(--gold-05);
    transform: translateY(-3px);
}

.cta-arrow {
    display: flex;
    transition: transform 0.5s var(--spring);
}

.cta-btn:hover .cta-arrow {
    transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-line-deco {
    width: 40px;
    height: 1px;
    background: var(--white-08);
}

.footer-url {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--white-15);
    letter-spacing: 3px;
    text-transform: lowercase;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.2s var(--smooth), transform 1.2s var(--smooth);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

    .headline-top,
    .headline-bottom {
        font-size: 2.8rem;
    }

    .tagline {
        letter-spacing: 5px;
        font-size: 0.75rem;
    }

    .logo-container {
        width: 240px;
        height: 240px;
    }

    .logo-video {
        width: 150px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 20px;
    }

    .headline-top,
    .headline-bottom {
        font-size: 2rem;
    }

    .tagline {
        letter-spacing: 3px;
        font-size: 0.68rem;
    }

    .description {
        font-size: 0.92rem;
    }

    .logo-container {
        width: 200px;
        height: 200px;
    }

    .logo-video {
        width: 120px;
    }

    .cta-btn {
        padding: 18px 36px;
        font-size: 0.7rem;
        letter-spacing: 2.5px;
    }

    .corner {
        display: none;
    }

    .orn-wing {
        width: 50px;
    }
}