/* =================================================================
   Hero
   ================================================================= */
.reo-hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero with background image */
.reo-hero--has-image {
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.reo-hero__overlay {
    display: none;
}

.reo-hero--has-image .reo-hero__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 10, 0.7) 0%,
        rgba(8, 8, 10, 0.5) 40%,
        rgba(8, 8, 10, 0.85) 100%
    );
    z-index: 0;
}

.reo-hero--has-image .reo-container {
    position: relative;
    z-index: 1;
}

/* Hero logo image */
.reo-hero__logo {
    max-width: 480px;
    width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .reo-hero__logo {
        max-width: 300px;
    }
}

.reo-hero__tagline {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    margin: 0 0 12px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .reo-hero__tagline { font-size: 32px; letter-spacing: -1px; }
}

.reo-hero__subtitle {
    font-size: 18px;
    color: var(--text-dim);
    margin: 0 0 32px;
    font-weight: 500;
    letter-spacing: 2px;
}

.reo-hero__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.reo-hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.reo-hero__stat-value {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-light);
}

.reo-hero__stat-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =================================================================
   Section Headers (home-specific)
   ================================================================= */
.reo-home-section { padding: 80px 0; }

.reo-home-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.reo-home-section__link {
    color: var(--accent-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.reo-home-section__link:hover { color: var(--accent); }

/* =================================================================
   Featured Release
   ================================================================= */
.reo-home-release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .reo-home-release { grid-template-columns: 1fr; }
}

.reo-home-release__artwork img {
    width: 100%;
    border-radius: 12px;
}

.reo-home-release__title {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.reo-home-release__meta {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.reo-home-release__embed {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.reo-home-release__embed iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.reo-home-release__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* =================================================================
   Videos section — 1 featured + 2 side
   ================================================================= */
.reo-home-videos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .reo-home-videos { grid-template-columns: 1fr; }
}

.reo-home-videos__featured {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.reo-home-videos__featured-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.reo-home-videos__featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reo-home-videos__featured-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.reo-home-videos__featured:hover .reo-home-videos__featured-overlay { opacity: 1; }

.reo-home-videos__featured-play {
    font-size: 56px;
    color: #fff;
    line-height: 1;
}

.reo-home-videos__featured-info { padding: 16px; }

.reo-home-videos__featured-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.reo-home-videos__featured-meta { font-size: 13px; color: var(--text-dim); }

.reo-home-videos__sidebar { display: flex; flex-direction: column; gap: 24px; }

/* =================================================================
   Radio section
   ================================================================= */
.reo-home-radio {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.reo-home-radio__embed {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.reo-home-radio__embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
}

.reo-home-radio__title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.reo-home-radio__collab {
    font-size: 13px;
    color: var(--text-muted);
}

.reo-home-radio__collab a {
    color: var(--accent-light);
    text-decoration: none;
}

/* =================================================================
   Instagram Grid
   ================================================================= */
.reo-home-instagram {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

@media (max-width: 768px) {
    .reo-home-instagram { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .reo-home-instagram { grid-template-columns: repeat(2, 1fr); }
}

.reo-home-instagram__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.reo-home-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reo-home-instagram__item:hover img { transform: scale(1.05); }

.reo-home-instagram__overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 92, 246, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
    font-size: 24px;
}

.reo-home-instagram__item:hover .reo-home-instagram__overlay { opacity: 1; }

/* =================================================================
   Newsletter
   ================================================================= */
.reo-home-newsletter {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.reo-home-newsletter__title {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.reo-home-newsletter__desc {
    color: var(--text-dim);
    margin-bottom: 24px;
}

.reo-newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .reo-newsletter-form { flex-direction: column; }
}

.reo-newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.reo-newsletter-form input[type="email"]:focus { border-color: var(--accent); }

.reo-newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }

.reo-newsletter__msg { margin-top: 12px; font-size: 14px; }

.reo-newsletter__msg--success { color: #22c55e; }

.reo-newsletter__msg--error { color: #ef4444; }
