/* ----------------------------------------------------
   ASCENDRY — Homepage
---------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Archivo', sans-serif;
    background: #0C0C0C;
    color: #ffffff;
    overflow-x: hidden;
}

/* ----------------------------------------------------
   Hero
---------------------------------------------------- */
.hero-section {
    min-height: 90vh;
    background: #0C0C0C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 0.5px solid #262626;
    overflow: hidden;
}
.hero-section::before {
    content: "NO TALK · ALL WORK";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: 'Anton', sans-serif;
    letter-spacing: 4px;
    color: #FF3040;
    font-size: 14px;
    z-index: 3;
}

/* Looping video background + legibility overlay */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.55);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* Launch promo band */
.asc-promo {
    background: #FF3040;
    color: #0C0C0C;
    text-align: center;
    padding: 0.9rem 1rem;
}
.asc-promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
}
.asc-promo-tag {
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
    font-size: 1rem;
}
.asc-promo-text { font-size: 0.95rem; }
.asc-promo-text strong { font-weight: 700; }
.asc-code {
    background: #0C0C0C;
    color: #FF3040;
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
    padding: 2px 10px;
    border-radius: 4px;
}
.asc-promo-sub { font-size: 0.8rem; opacity: 0.8; letter-spacing: 0.5px; }
.hero-section .hero-label {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    letter-spacing: 4px;
    color: #9A9A9A;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.hero-section h1 {
    font-family: 'Anton', sans-serif;
    font-size: 5.5rem;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}
.hero-section h1 .accent { color: #FF3040; }
.hero-section .lead {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 1.4rem auto 2.2rem;
    line-height: 1.6;
}

.hero-btn {
    background: #FF3040 !important;
    color: #0C0C0C !important;
    border: none;
    padding: 0.95rem 2.6rem;
    border-radius: 6px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-btn:hover { background: #ff4757 !important; transform: translateY(-2px); }

/* ----------------------------------------------------
   Featured section
---------------------------------------------------- */
.container h2 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.card {
    border: 0.5px solid #262626;
    border-radius: 10px;
    background: #171717;
    color: #fff;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px); border-color: #FF3040; }

.product-images img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.product-images { margin-bottom: 0.5rem; }

.card-title { text-transform: uppercase; font-size: 1rem; letter-spacing: 0.5px; }
.card-text { font-family: 'Anton', sans-serif; color: #fff; font-size: 1.15rem; }

/* ----------------------------------------------------
   Responsive
---------------------------------------------------- */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 3.2rem; }
    .hero-section::before { font-size: 11px; right: 10px; }
}
