/* ================================================================
   vc-story.css — Story / About Us Page
   ================================================================ */

.vc-story-page {
    background: #111;
    min-height: 100vh;
}

/* Hero — shared .vc-page-hero base */
.vc-story-page .vc-page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 32rem;
    background: #0d0d0d center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vc-story-page .vc-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 0;
}

.vc-story-page .vc-page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 var(--side-pad);
}

.vc-story-page .vc-page-hero__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.vc-story-page .vc-page-hero__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

.vc-story-page .vc-page-hero__rule {
    width: 3rem;
    height: 1.5px;
    background: var(--c-gold);
    opacity: 0.65;
    margin-top: 0.5rem;
}

/* Shared page button */
.vc-story-page .vc-page-btn {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold) !important;
    background: transparent;
    border: 1.5px solid var(--c-gold);
    padding: 0.75rem 2rem;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    margin-top: 0.75rem;
    align-self: flex-start;
}

.vc-story-page .vc-page-btn:hover { background: var(--c-gold); color: #111 !important; }
.vc-story-page .vc-page-btn:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }


/* ================================================================
   SPLIT SECTION — image + overlapping content card
   ================================================================ */

.vc-story-split {
    background: #111;
    position: relative;
    /* Padding top/bottom creates breathing room around each section */
    padding: 5rem var(--side-pad);
    display: grid;
    align-items: center;
    gap: 0;
}

/* Image LEFT: image col 1, card overlaps from right */
.vc-story-split--left {
    grid-template-columns: 50% 1fr;
    grid-template-areas: "img card";
}

/* Image RIGHT: card left, image col 2 */
.vc-story-split--right {
    grid-template-columns: 1fr 52%;
    grid-template-areas: "card img";
}

/* Image column */
.vc-story-split__img-col {
    overflow: hidden;
    height: 100%;
    min-height: 28rem;
}

.vc-story-split--left  .vc-story-split__img-col { grid-area: img; }
.vc-story-split--right .vc-story-split__img-col { grid-area: img; }
.vc-story-split--left  .vc-story-split__card    { grid-area: card; }
.vc-story-split--right .vc-story-split__card    { grid-area: card; }

.vc-story-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 28rem;
    max-height: 38rem;
}

/* Content card — dark bg with border, overlaps image slightly */
.vc-story-split__card {
    background: #000000d1;
    border: 1px solid rgba(232,160,44,0.12);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    position: relative;
    z-index: 1;
    /* Overlap: negative margin pulls card over the image */
    margin-left: -3rem;
    align-self: center;
}

.vc-story-split--right .vc-story-split__card {
    margin-left: 0;
    margin-right: -3rem;
}

/* Eyebrow */
.vc-story-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: block;
}

/* Title */
.vc-story-split__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}

/* Gold divider under title */
.vc-story-split__rule {
    width: 3.25rem;
    height: 2px;
    background: var(--c-gold);
    opacity: 0.80;
    margin-top: -0.375rem;
}

/* Body text */
.vc-story-split__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0625rem;
    color: rgba(215,202,180,0.88);
    line-height: 1.82;
}

.vc-story-split__text p       { margin: 0 0 1rem; }
.vc-story-split__text p:last-child { margin-bottom: 0; }


/* ================================================================
   BANNER SECTION — full-width bg, centered text
   ================================================================ */

.vc-story-banner {
    position: relative;
    width: 100%;
    min-height: 35rem;
    background: #0d0d0d center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 5rem var(--side-pad);
}

.vc-story-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
    z-index: 0;
}

.vc-story-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    max-width: 48rem;
}

.vc-story-banner__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.vc-story-banner__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin: 0.25rem 0;
}

.vc-story-banner__text p       { margin: 0 0 0.75rem; }
.vc-story-banner__text p:last-child { margin-bottom: 0; }

.vc-story-banner__rule {
    width: 3.25rem;
    height: 1.5px;
    background: var(--c-gold);
    opacity: 0.70;
    margin-top: 0.25rem;
}

/* Banner button centered */
.vc-story-banner .vc-page-btn { align-self: center; margin-top: 0.25rem; }


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
    .vc-story-split__card { padding: 3rem 2.5rem; }
    .vc-story-split       { padding: 4rem var(--side-pad); }
}

@media (max-width: 768px) {
    /* Stack: image on top, card below — always */
    .vc-story-split--left,
    .vc-story-split--right {
        grid-template-columns: 1fr;
        grid-template-areas:
            "img"
            "card";
        padding: 3rem 0 3rem;
        gap: 0;
    }

    .vc-story-split__img-col { min-height: 18rem; }
    .vc-story-split__img     { min-height: 18rem; max-height: 22rem; }

    /* Remove overlap on mobile */
    .vc-story-split__card,
    .vc-story-split--right .vc-story-split__card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 2.5rem var(--side-pad);
    }

    .vc-story-banner { padding: 3.5rem var(--side-pad); min-height: 18rem; }
    .vc-story-banner__title { font-size: clamp(2rem, 7vw, 3rem); }

    .vc-story-page .vc-page-btn { align-self: flex-start; }
}

@media (max-width: 576px) {
    .vc-story-split__text { font-size: 1rem; }
    .vc-story-banner__text { font-size: 1rem; }
    .vc-story-split__card  { padding: 2rem var(--side-pad); }
}