html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    background: url("/assets/bg.png") center 22% / cover fixed no-repeat;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 14vh;
    text-align: center;
    position: relative;
}

.hero-logo {
    width: 200px;
    margin-bottom: 15px;
    opacity: 0;
    animation:
        fadeIn 2s ease forwards,
        pulse 4s ease-in-out 2s infinite;
}

.hero-title {
    font-size: 52px;
    letter-spacing: 14px;
    text-transform: uppercase;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 3px;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.fade-delay-1 { animation-delay: 0.4s; }
.fade-delay-2 { animation-delay: 0.8s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 3px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* SECTION */
.section {
    font-family: 'Montserrat', sans-serif;
    max-width: 1320px;
    margin: 120px auto 200px auto;
    padding: 0 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 90px;
}

.section-header::before,
.section-header::after {
    content: "";
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.section-header h2 {
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 2px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

/* CARD */
.card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    background: #000;
    transition: .4s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.45);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.9) 100%
    );
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.brand-block { text-align: center; }

.brand-title {
    font-size: 15px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-vol {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 4px;
    color: #c8a45c;
}

.brand-subtitle {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.brand-divider {
    margin: 18px auto 0 auto;
    width: 120px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #c8a45c 40%,
        #c8a45c 60%,
        transparent
    );
}

.card-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #c8a45c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn::before {
    content: "";
    border-left: 14px solid #c8a45c;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;
}

.meta {
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width:1200px){
    .grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width:700px){
    .grid{ grid-template-columns:1fr; }
}