/* ==========================================
    SUITS PAGE - ULTRA LUXURY REDESIGN
    PURE WHITE & WARM CREAM THEME
========================================== */

/* Global Overrides just for Suits Page */
body.suits-page-active {
    background-color: #F8F5F0; /* Warm cream base */
    color: #333333;
}

body.suits-page-active .main-footer {
    /* Ensure no dark spots */
    background-color: #F8F5F0;
    color: #333333;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

body.suits-page-active .main-footer h2,
body.suits-page-active .main-footer h4,
body.suits-page-active .main-footer a,
body.suits-page-active .main-footer p,
body.suits-page-active .footer-bottom p {
    color: #333333 !important;
}

/* ==========================================
    HERO (92vh Ken Burns)
========================================== */
.sp-hero {
    height: 92vh;
    min-height: 600px;
    width: 100%;
    margin-top: 50px; 
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../images/suit_superhuman.png'); /* Default fallback */
    animation: kenBurns 18s ease-out forwards;
    z-index: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.1); }
}

.sp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark top to Warm cream bottom fade */
    background: linear-gradient(to bottom, rgba(122, 26, 26, 0.5) 0%, rgba(0,0,0,0.2) 60%, #F8F5F0 100%);
    z-index: 2;
}

.sp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    top: -20px;
}

.sp-eyebrow {
    font-family: var(--font-main);
    color: #C4A35A;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sp-eyebrow::before,
.sp-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #C4A35A;
}

.sp-hero-title {
    font-family: var(--font-accent);
    font-size: 130px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sp-hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
}

.sp-scroll-indicator {
    position: absolute;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #C4A35A;
    font-family: var(--font-main);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sp-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #C4A35A, transparent);
    animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0% { transform: scaleY(1); opacity: 1; transform-origin: top; }
    50% { transform: scaleY(1.5); opacity: 0.3; transform-origin: top; }
    100% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* FIX: Issue 1 — Center hero title and eyebrow text on mobile */
@media (max-width: 768px) {
    .sp-hero { overflow-x: hidden; }
    .sp-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .sp-eyebrow {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .sp-hero-title {
        font-size: 80px;
        text-align: center;
        width: 100%;
    }
    .sp-hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
        text-align: center;
        width: 100%;
    }
}

/* ==========================================
    INTRO STRIP
========================================== */
.sp-intro-strip {
    background-color: #ffffff;
    padding: 100px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 5;
}

.sp-intro-col {
    padding: 0 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sp-intro-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(196, 163, 90, 0.3), transparent);
}

.sp-roman-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.sp-roman {
    font-family: var(--font-accent);
    color: #C4A35A;
    font-size: 1.2rem;
}

.sp-roman-line {
    height: 1px;
    flex-grow: 1;
    background: #C4A35A;
    opacity: 0.4;
}

.sp-intro-headline {
    font-family: var(--font-accent);
    font-style: italic;
    color: #333333;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.sp-intro-body {
    flex-grow: 1; /* Pushes tags to bottom */
}

.sp-tags {
    margin-top: 30px;
    color: #C4A35A;
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .sp-intro-strip {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 5%;
    }
    .sp-intro-col {
        padding: 0;
    }
    .sp-intro-col:not(:last-child)::after {
        display: none;
    }
}

/* ==========================================
    PRODUCTS WE SERVE (NAMES ONLY)
========================================== */
.sp-products-serve {
    background: linear-gradient(180deg, #ffffff 0%, #F8F5F0 100%);
    padding: 80px 5% 70px 5%;
}

.sp-products-serve-header {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.sp-products-serve-subtitle {
    display: inline-block;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #C4A35A;
    margin-bottom: 12px;
}

.sp-products-serve-title {
    font-family: var(--font-accent);
    font-size: 52px;
    font-weight: 400;
    color: #7A1A1A;
    line-height: 1.1;
}

.sp-products-serve-list-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(196, 163, 90, 0.25);
    padding: 30px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sp-products-serve-list {
    margin: 0;
    padding-left: 24px;
    columns: 2;
    column-gap: 50px;
}

.sp-products-serve-list li {
    break-inside: avoid;
    margin: 0 0 12px 0;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.5;
    color: #333333;
}

@media (max-width: 900px) {
    .sp-products-serve-title {
        font-size: 40px;
    }

    .sp-products-serve-list {
        columns: 1;
    }
}

@media (max-width: 600px) {
    .sp-products-serve {
        padding: 60px 5% 50px 5%;
    }

    .sp-products-serve-title {
        font-size: 32px;
    }

    .sp-products-serve-list-wrap {
        padding: 22px 18px;
    }

    .sp-products-serve-list li {
        font-size: 0.95rem;
    }
}

/* ==========================================
    COLLECTION HEADER
========================================== */
.sp-collection-wrapper {
    background-color: #F8F5F0;
    padding: 60px 5% 40px 5%;
}

.sp-collection-header {
    display: flex;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 20px;
}

.sp-coll-title {
    font-family: var(--font-accent);
    font-size: 56px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.sp-coll-the {
    color: #666;
    font-weight: 300;
}

.sp-coll-collection {
    color: #7A1A1A; /* Crimson */
    font-style: italic;
    font-weight: 400;
}

.sp-coll-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(196,163,90,0.5), transparent);
}

.sp-coll-count {
    color: #C4A35A;
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sp-coll-title { font-size: 40px; }
}

/* ==========================================
    CARDS WRAPPER
========================================== */
.sp-cards-container {
    padding: 0 5% 100px 5%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ==========================================
    FULL WIDTH CARD (Superhuman)
========================================== */
.sp-split-card {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
    position: relative;
}

.sp-split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(122, 26, 26, 0.08); /* Red shadow */
}

.sp-split-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Gradient overlay to make text readable over the image */
.sp-split-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.sp-split-content {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
    width: 60%;
}

/* Red to gold sweep on top of content area on hover */
.sp-split-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 3px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-luxury);
    z-index: 10;
}

/* Red to gold sweep on top of content area on hover */
.sp-split-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* Just over the white part */
    height: 3px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-luxury);
    z-index: 10;
}

.sp-split-card:hover::before {
    transform: scaleX(1);
}

.sp-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C4A35A;
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sp-tag::before {
    content: '';
    width: 25px;
    height: 1px;
    background: #C4A35A;
}

.sp-headline {
    font-family: var(--font-accent);
    font-style: italic;
    color: #7A1A1A;
    margin-bottom: 25px;
}

.sp-split-card .sp-headline {
    font-size: 54px;
    line-height: 1.1;
    color: #ffffff; /* White text on dark overlay */
}

.sp-body {
    font-family: var(--font-main);
    font-weight: 300;
    color: #666;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sp-split-card .sp-body {
    color: #dddddd; /* Lighter text on dark overlay */
}

.sp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-features li {
    position: relative;
    padding-left: 20px;
    font-family: var(--font-main);
    color: #333;
    font-size: 0.9rem;
    font-weight: 300;
}

.sp-split-card .sp-features li {
    color: #ffffff; /* White text on dark overlay */
}

.sp-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C4A35A;
}

.btn-sp-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: #7A1A1A;
    color: #ffffff;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(122, 26, 26, 0.3);
    transition: 0.4s var(--ease-luxury);
    width: fit-content;
    text-decoration: none;
}

.btn-sp-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(122, 26, 26, 0.4);
    background: #591010; /* Darker red */
}

@media (max-width: 1000px) {
    .sp-split-content { width: 100%; }
}

/* ==========================================
    TWIN CARDS (Longevity / Recovery)
========================================== */
.sp-twin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sp-twin-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
    display: flex;
    flex-direction: column;
}

.sp-twin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(122, 26, 26, 0.08);
}

.sp-twin-img {
    height: 340px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sp-twin-img div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-luxury);
}

.sp-twin-card:hover .sp-twin-img div {
    transform: scale(1.06);
}

.sp-twin-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transition: left 0.8s var(--ease-luxury);
    z-index: 2;
}

.sp-twin-card:hover .sp-twin-img::after {
    left: 0;
}

.sp-twin-content {
    background: #ffffff;
    padding: 50px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.sp-twin-card .sp-headline {
    font-size: 40px;
}

.sp-twin-card .sp-body {
    margin-bottom: 40px;
}

.btn-sp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border: 1px solid #C4A35A;
    color: #C4A35A;
    background: transparent;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s var(--ease-luxury);
    width: fit-content;
    text-decoration: none;
    margin-top: auto;
}

.btn-sp-outline:hover {
    background: #7A1A1A;
    border-color: #7A1A1A;
    color: #ffffff;
}

.sp-twin-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transition: left 0.8s var(--ease-luxury);
    z-index: 10;
}

.sp-twin-card:hover::after {
    left: 0;
}

@media (max-width: 900px) {
    .sp-twin-grid { grid-template-columns: 1fr; }
}

/* ==========================================
    GIANT WATERMARKS
========================================== */
.sp-watermark {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: var(--font-accent);
    color: rgba(122, 26, 26, 0.03); /* Faint crimson */
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.sp-split-card .sp-watermark {
    font-size: 180px;
}

.sp-twin-card .sp-watermark {
    font-size: 150px;
}
