/**
 * Home page (index) — layered on top of style.css
 */

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.home-hero {
    --hero-bg: none;
    background-color: var(--primary-black);
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}

.home-hero::before {
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.65) 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
}

.home-hero .hero-content {
    max-width: 920px;
}

.home-hero__kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin: 0 0 16px;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.95);
}

.home-hero__lead {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.home-hero .btn-ghost {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.home-hero .btn-ghost:hover {
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.12);
}

.home-hero .btn-ghost:focus-visible {
    outline: 2px solid var(--primary-white);
    outline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                */
/* -------------------------------------------------------------------------- */

.home-trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    padding: 22px 0;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.home-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.home-trust-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.9;
}

.home-trust-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--primary-white);
}

.home-trust-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

/* -------------------------------------------------------------------------- */
/* Promo                                                                      */
/* -------------------------------------------------------------------------- */

.promo-banner.home-promo {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #fafafa 0%, var(--gray-light) 100%);
    color: var(--text-primary);
}

.home-promo .promo-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 48px;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.home-promo .promo-content h3 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.home-promo .promo-content p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    opacity: 1;
}

.home-promo .promo-btn {
    color: var(--primary-black);
    border-bottom-color: var(--primary-black);
}

.home-promo .promo-btn:hover {
    letter-spacing: 3px;
    padding-bottom: 8px;
}

/* -------------------------------------------------------------------------- */
/* Instagram section header                                                   */
/* -------------------------------------------------------------------------- */

.home-instagram-head .home-section-kicker {
    text-align: left;
    margin-bottom: 8px;
}

.home-instagram-head .section-title {
    text-align: left;
    margin-bottom: 0;
}

.home-instagram-head .section-title::after {
    left: 0;
    transform: none;
}

/* -------------------------------------------------------------------------- */
/* Section headings & carousel toolbar                                        */
/* -------------------------------------------------------------------------- */

.home-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.home-section-head .section-title {
    margin-bottom: 0;
}

.home-section-head .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.home-section-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 12px;
}

.home-carousel-toolbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .home-carousel-toolbar {
        width: 100%;
        justify-content: space-between;
    }
}

/* -------------------------------------------------------------------------- */
/* About — semantic classes (replace inline styles)                           */
/* -------------------------------------------------------------------------- */

.about-story-title {
    text-align: left !important;
    margin-bottom: 24px !important;
}

.about-lead {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.about-image img,
.about-placeholder {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-placeholder {
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Reduced motion                                                             */
/* -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .home-hero .hero-content {
        animation: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Trust strip responsive                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .home-trust-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
