/* Hero — split layout: content left, animated logo video right */
:root {
    --hero-features-overlap: clamp(3.25rem, 7vw, 4.5rem);
}

.hero {
    position: relative;
    width: 100%;
    overflow: visible;
    isolation: isolate;
    z-index: 2;
}

.hero--split {
    min-height: clamp(520px, calc(100vh - var(--header-height, 118px)), 860px);
    min-height: clamp(520px, calc(100dvh - var(--header-height, 118px)), 860px);
    margin-bottom: 0;
    padding-bottom: var(--hero-features-overlap);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: inherit;
    width: 100%;
}

/* Left — content */
.hero-split__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 146, 46, 0.14), transparent 42%),
        linear-gradient(145deg, #0f2920 0%, #1a3d32 45%, #163429 100%);
    color: #fff;
}

.hero-running-border {
    position: relative;
    width: min(520px, 100%);
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(
        120deg,
        #c9922e 0%,
        #e8c96a 18%,
        #1a5c3e 38%,
        #ffffff 50%,
        #c9922e 62%,
        #1f5a48 82%,
        #c9922e 100%
    );
    background-size: 280% 100%;
    animation: heroBorderRun 5s linear infinite;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@keyframes heroBorderRun {
    0% { background-position: 0% 50%; }
    100% { background-position: 280% 50%; }
}

.hero-running-border__inner {
    padding: clamp(1.5rem, 3.5vw, 2.35rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 15px;
    background: rgba(8, 28, 22, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8c96a;
    background: rgba(201, 146, 46, 0.15);
    border: 1px solid rgba(232, 201, 106, 0.28);
}

.hero-running-border__inner h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.55rem, 3.8vw, 2.65rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: #fff;
}

.hero-quote {
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 0.45rem;
    line-height: 1.45;
}

.hero-desc {
    font-size: clamp(0.84rem, 1.6vw, 0.98rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0 0 1.15rem;
}

.hero-perks {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.hero-perk-icon {
    color: #e8c96a;
    font-size: 0.75rem;
    line-height: 1.6;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(160px, 100%);
    padding: 0.72rem 1.35rem;
    border-radius: 6px;
    font-size: clamp(0.68rem, 1.6vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #c9922e 0%, #e8c96a 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #1a1510;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 146, 46, 0.35);
}

.hero-btn-call {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hero-btn-call:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Right — full video, nudged slightly toward the text side */
.hero-split__media {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(0.65rem, 1.4vw, 1rem);
    padding-right: clamp(1.5rem, 3.5vw, 3.25rem);
    background: #0a1814;
    overflow: hidden;
}

.hero-video-wrap {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: 4px;
    overflow: hidden;
}

.hero-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

/* Feature strip — bridge sits on hero / tours boundary */
.hero-features-bridge {
    position: relative;
    z-index: 30;
    height: 0;
    margin: 0;
    pointer-events: none;
}

.hero-features-border {
    pointer-events: auto;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 30;
    width: min(1080px, calc(100% - clamp(2rem, 8vw, 7rem)));
    transform: translate(-50%, -50%);
    padding: 3px;
    border-radius: 10px;
    background: linear-gradient(
        120deg,
        #c9922e 0%,
        #e8c96a 15%,
        #ffffff 28%,
        #1a5c3e 42%,
        #2d8a4e 58%,
        #2563eb 72%,
        #db2777 85%,
        #c9922e 100%
    );
    background-size: 320% 100%;
    animation: heroFeaturesBorderRun 4.5s linear infinite;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

@keyframes heroFeaturesBorderRun {
    0% { background-position: 0% 50%; }
    100% { background-position: 320% 50%; }
}

.hero-features {
    pointer-events: auto;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(135deg, #1a4d3e 0%, #2d6b4f 35%, #c9922e 100%);
    color: #fff;
    border-radius: 7px;
    overflow: hidden;
}

.hero-feat {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.65rem, 1.5vw, 0.85rem);
    padding: clamp(0.9rem, 2vw, 1.35rem) clamp(0.85rem, 2vw, 1.75rem);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.hero-feat:last-child { border-right: none; }

.hero-feat:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hero-feat svg {
    width: clamp(28px, 4vw, 36px);
    height: clamp(28px, 4vw, 36px);
    flex-shrink: 0;
    stroke: #fff;
    fill: none;
    stroke-width: 1.4;
    opacity: 0.95;
}

.hero-feat h3 {
    font-size: clamp(0.68rem, 1.4vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.hero-feat p {
    font-size: clamp(0.68rem, 1.3vw, 0.82rem);
    line-height: 1.45;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero--split {
        min-height: clamp(480px, calc(100vh - var(--header-height, 108px)), 760px);
        min-height: clamp(480px, calc(100dvh - var(--header-height, 108px)), 760px);
    }

    .hero-feat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-features-border {
        width: min(920px, calc(100% - clamp(1.75rem, 6vw, 4rem)));
    }
}

@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto min(52vh, 420px);
    }

    .hero-split__content {
        padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1rem, 4vw, 1.5rem);
    }

    .hero-split__media {
        min-height: min(52vh, 420px);
        justify-content: center;
        padding-right: clamp(0.65rem, 1.4vw, 1rem);
    }
}

@media (max-width: 768px) {
    :root {
        --hero-features-overlap: clamp(7rem, 20vw, 9.5rem);
    }

    .hero--split {
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
    }

    .hero-features-border {
        width: min(520px, calc(100% - clamp(1.25rem, 5vw, 2rem)));
    }

    .hero-feat {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-feat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    :root {
        --hero-features-overlap: clamp(8rem, 30vw, 11.5rem);
    }

    .hero-split__media {
        min-height: min(46vh, 340px);
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-features-border {
        width: calc(100% - 0.5rem);
    }

    .hero-feat svg {
        width: 26px;
        height: 26px;
    }
}
