/*
Theme Name: DJ Romello
Theme URI:
Author: Billy Saintvil
Description: A child theme of Twenty Twenty-Five for DJ Romello.
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: djromello
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--red:       #dc143c;
	--red-dark:  #a50f2d;
	--red-glow:  rgba(220, 20, 60, 0.35);
	--black:     #050508;
	--dark:      #0d0d12;
	--dark2:     #13131a;
	--dark3:     #1a1a24;
	--white:     #ffffff;
	--gold:      #c9a84c;
	--gold-glow: rgba(201, 168, 76, 0.28);
	--grey:      #9090a0;
	--light:     #c8c8d8;
	--font:      'Helvetica Neue', Arial, sans-serif;
	--nav-h:     80px;
}

html { scroll-behavior: smooth; }

body.djr-front {
	font-family: var(--font);
	background: var(--black);
	color: var(--white);
	overflow-x: hidden;
	/* Kill default WP padding */
	margin: 0 !important;
	padding: 0 !important;
}

/* hide default WP admin bar interference on full-height hero */
body.djr-front.admin-bar .djr-hero { padding-top: 32px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.djr-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	height: var(--nav-h);
	transition: background 0.4s ease, box-shadow 0.4s ease;
}

.djr-header.scrolled {
	background: rgba(5, 5, 8, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.djr-nav-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo base — layout & hover handled by djr-vinyl.css */
.djr-logo {
	text-decoration: none;
	display: flex;
	align-items: center;
}

/* Nav links */
.djr-nav ul {
	list-style: none;
	display: flex;
	gap: 22px;
}
.djr-nav ul li a {
	text-decoration: none;
	color: var(--light);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
	transition: color 0.25s;
}
.djr-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -4px; left: 0;
	width: 0; height: 2px;
	background: var(--red);
	transition: width 0.25s ease;
}
.djr-nav ul li a:hover,
.djr-nav ul li a.active { color: var(--white); }
.djr-nav ul li a:hover::after,
.djr-nav ul li a.active::after { width: 100%; }

/* Hamburger */
.djr-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 1001;
}
.djr-hamburger span {
	display: block;
	width: 26px; height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}
.djr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.djr-hamburger.open span:nth-child(2) { opacity: 0; }
.djr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.djr-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--black);
}

/* Cinematic gradient background */
.djr-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 40%, rgba(220,20,60,0.18) 0%, transparent 70%),
		radial-gradient(ellipse 60% 50% at 20% 80%, rgba(80,0,20,0.4) 0%, transparent 60%),
		linear-gradient(180deg, #050508 0%, #0a0008 40%, #050508 100%);
	z-index: 0;
}

.djr-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 1;
}

.djr-hero-particles {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.djr-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: calc(var(--nav-h) + 40px) 24px 80px;
	max-width: 900px;
	animation: djr-fade-up 1s ease both;
}

@keyframes djr-fade-up {
	from { opacity: 0; transform: translateY(40px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.djr-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 28px;
	animation: djr-fade-up 1s 0.15s ease both;
}
.djr-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--red);
	display: inline-block;
	animation: djr-pulse 1.5s infinite;
}
@keyframes djr-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Headline */
.djr-hero-headline {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 1.0;
	letter-spacing: -0.03em;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 24px;
	text-shadow: 0 0 80px rgba(220,20,60,0.4), 0 4px 40px rgba(0,0,0,0.8);
	animation: djr-fade-up 1s 0.25s ease both;
}

/* Tagline */
.djr-hero-tagline {
	font-size: clamp(0.95rem, 1.8vw, 1.35rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 10px;
	animation: djr-fade-up 1s 0.3s ease both;
}

/* Subtitle */
.djr-hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 48px;
	animation: djr-fade-up 1s 0.35s ease both;
}

/* CTA Buttons */
.djr-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 72px;
	animation: djr-fade-up 1s 0.45s ease both;
}

/* Buttons */
.djr-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.djr-btn:hover { transform: translateY(-2px); }

/* ── Primary "Book DJ Romello" button — subtle professional animation ── */
.djr-btn-primary {
	position:   relative;
	overflow:   hidden;
	background: var(--red);
	color:      var(--white);
	box-shadow: 0 4px 24px var(--red-glow);

	/* Idle: gentle glow breath so it catches the eye without being loud */
	animation: djr-btn-breathe 3s ease-in-out infinite;
}

/* Breathing glow — barely perceptible on the first cycle, noticeable on the second */
@keyframes djr-btn-breathe {
	0%,  100% { box-shadow: 0 4px 20px rgba(220,20,60,0.35); }
	50%        { box-shadow: 0 6px 32px rgba(220,20,60,0.65), 0 0 0 3px rgba(220,20,60,0.12); }
}

/* Shimmer sweep — a soft diagonal light that crosses the button every 4 s */
.djr-btn-primary::before {
	content:    '';
	position:   absolute;
	top:        0;
	left:       -75%;
	width:      55%;
	height:     100%;
	background: linear-gradient(
		105deg,
		transparent            0%,
		rgba(255,255,255,0.10) 40%,
		rgba(255,255,255,0.18) 50%,
		rgba(255,255,255,0.10) 60%,
		transparent            100%
	);
	transform:  skewX(-18deg);
	animation:  djr-btn-shimmer 4s ease-in-out infinite;
	pointer-events: none;
}
@keyframes djr-btn-shimmer {
	0%        { left: -75%; }
	30%, 100% { left: 130%; }  /* sweep, then pause for the rest of the cycle */
}

.djr-btn-primary:hover {
	background:  var(--red-dark);
	box-shadow:  0 8px 36px rgba(220,20,60,0.60);
	color:       var(--white);
	/* pause the idle breath on hover — clean interaction feel */
	animation:   none;
}
/* Shimmer speeds up instantly when hovered */
.djr-btn-primary:hover::before {
	animation: djr-btn-shimmer 1.2s ease-in-out infinite;
}

.djr-btn-ghost {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255,255,255,0.3);
}
.djr-btn-ghost:hover {
	border-color: var(--white);
	background: rgba(255,255,255,0.06);
	color: var(--white);
}

.djr-btn-lg {
	padding: 20px 48px;
	font-size: 1rem;
}

/* Stats */
.djr-hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	animation: djr-fade-up 1s 0.55s ease both;
}
.djr-stat { text-align: center; padding: 0 40px; }
.djr-stat-num {
	display: block;
	font-size: 2.25rem;
	font-weight: 900;
	color: var(--white);
	letter-spacing: -0.04em;
}
.djr-stat-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--grey);
	margin-top: 4px;
}
.djr-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255,255,255,0.12);
}

/* Scroll cue */
.djr-scroll-cue {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: var(--grey);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	animation: djr-fade-up 1s 0.8s ease both;
}
.djr-scroll-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
	animation: djr-scroll-drop 2s infinite;
}
@keyframes djr-scroll-drop {
	0%   { transform: scaleY(0); transform-origin: top; }
	50%  { transform: scaleY(1); transform-origin: top; }
	51%  { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.djr-services-strip {
	background: var(--dark2);
	padding: 100px 24px;
}
.djr-services-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.djr-service-card {
	position: relative;
	height: 420px;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--gold);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.djr-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.5);
}
/* Dark overlay */
.djr-service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.55);
	transition: background 0.35s ease;
	z-index: 1;
}
.djr-service-card:hover::before {
	background: rgba(0,0,0,0.35);
}
/* Card inner — icon + title centered */
.djr-service-card-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 40px 28px 24px;
	text-align: center;
}
.djr-service-svg-icon {
	margin-bottom: 22px;
	opacity: 0.9;
	transition: opacity 0.3s, transform 0.3s;
}
.djr-service-card:hover .djr-service-svg-icon {
	opacity: 1;
	transform: translateY(-3px);
}
.djr-service-card h3 {
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--white);
	margin: 0;
	line-height: 1.3;
	word-break: break-word;
	overflow-wrap: break-word;
}
/* Gold bottom accent line */
.djr-service-bottom-line {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 2px;
	background: var(--gold);
	flex-shrink: 0;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.djr-about-strip {
	background: var(--black);
	padding: 120px 24px;
}
.djr-about-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.djr-section-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 16px;
}
.djr-about-text h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 24px;
}
.djr-about-body {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--grey);
	margin-bottom: 36px;
}

/* Equalizer visual */
.djr-about-visual {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.djr-equalizer {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 200px;
}
.djr-bar {
	width: 12px;
	background: linear-gradient(to top, var(--red-dark), var(--red), #ff4466);
	border-radius: 3px 3px 0 0;
	animation: djr-eq 1.2s ease-in-out infinite alternate;
	min-height: 8px;
}
@keyframes djr-eq {
	from { height: 8%; }
	to   { height: 100%; }
}
.djr-bar:nth-child(odd)  { animation-duration: 0.9s; }
.djr-bar:nth-child(3n)   { animation-duration: 1.4s; }
.djr-bar:nth-child(5n)   { animation-duration: 0.7s; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.djr-cta-banner {
	background:
		radial-gradient(ellipse 100% 100% at 50% 50%, rgba(220,20,60,0.25) 0%, transparent 70%),
		var(--dark2);
	padding: 100px 24px;
	text-align: center;
	border-top: 1px solid rgba(220,20,60,0.2);
	border-bottom: 1px solid rgba(220,20,60,0.2);
}
.djr-cta-inner { max-width: 700px; margin: 0 auto; }
.djr-cta-inner h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 16px;
}
.djr-cta-inner p {
	font-size: 1.1rem;
	color: var(--grey);
	margin-bottom: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.djr-footer {
	background: var(--black);
	padding: 60px 24px 40px;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.djr-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.djr-footer-tagline {
	color: var(--grey);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	margin: 12px 0 32px;
}
.djr-footer-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 40px;
}
.djr-footer-nav a {
	text-decoration: none;
	color: var(--grey);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.2s;
}
.djr-footer-nav a:hover { color: var(--red); }
.djr-copyright {
	font-size: 0.75rem;
	color: rgba(144,144,160,0.5);
	letter-spacing: 0.05em;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.djr-section-header {
	text-align: center;
	padding-bottom: 48px;
}
.djr-section-header h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin-top: 8px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.djr-feature-row,
.djr-service-card,
.djr-testimonial-card,
.djr-mix-card {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.djr-feature-row.djr-visible,
.djr-service-card.djr-visible,
.djr-testimonial-card.djr-visible,
.djr-mix-card.djr-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   FEATURES — MUSIC & EQUIPMENT
   ============================================================ */
.djr-features {
	background: var(--dark2);
	padding: 0;
}

.djr-feature-row {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	padding: 100px 40px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.djr-feature-row--flip .djr-feature-text { order: 1; }
.djr-feature-row--flip .djr-feature-visual { order: 2; }

.djr-feature-text h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin: 12px 0 20px;
	line-height: 1.1;
}
.djr-feature-text p {
	font-size: 1rem;
	line-height: 1.85;
	color: var(--grey);
}
.djr-feature-text p strong { color: var(--white); font-weight: 700; }
.djr-feature-text p em     { color: var(--red); font-style: normal; font-weight: 600; }

/* Icon circle */
.djr-feature-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 320px;
}
.djr-feature-ring {
	position: absolute;
	width: 260px; height: 260px;
	border-radius: 50%;
	border: 1px solid rgba(220,20,60,0.25);
	box-shadow: 0 0 60px rgba(220,20,60,0.12), inset 0 0 60px rgba(220,20,60,0.06);
	animation: djr-ring-pulse 3s ease-in-out infinite;
}
@keyframes djr-ring-pulse {
	0%, 100% { transform: scale(1);    opacity: 1; }
	50%       { transform: scale(1.05); opacity: 0.6; }
}
.djr-feature-glyph {
	font-size: 7rem;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 30px rgba(220,20,60,0.5));
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.djr-testimonials {
	background: var(--black);
	padding: 100px 24px;
}
.djr-testimonials-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.djr-testimonials-inner h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin: 8px 0 48px;
}
.djr-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 16px;
}
.djr-testimonial-card {
	background: var(--dark3);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 4px;
	padding: 40px 32px 32px;
	text-align: left;
	position: relative;
	transition: border-color 0.3s, transform 0.3s;
}
.djr-testimonial-card:hover {
	border-color: rgba(220,20,60,0.4);
	transform: translateY(-4px);
}
.djr-quote-mark {
	font-size: 4rem;
	line-height: 1;
	color: var(--red);
	font-family: Georgia, serif;
	margin-bottom: 12px;
	opacity: 0.7;
}
.djr-testimonial-text {
	font-size: 0.975rem;
	line-height: 1.8;
	color: var(--light);
	margin-bottom: 28px;
}
.djr-testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}
.djr-author-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--red-dark), var(--red));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
}
.djr-testimonial-author strong {
	display: block;
	font-size: 0.9rem;
	color: var(--white);
}
.djr-testimonial-author span {
	font-size: 0.75rem;
	color: var(--grey);
	letter-spacing: 0.05em;
}

/* ============================================================
   MIXTAPE SECTION
   ============================================================ */
.djr-mixtape-section {
	background: var(--dark2);
	padding: 100px 24px;
	border-top: 1px solid rgba(255,255,255,0.05);
}
.djr-mixtape-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.djr-mixtape-inner h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin: 8px 0 12px;
}
.djr-mixtape-sub {
	color: var(--grey);
	font-size: 1rem;
	margin-bottom: 48px;
}
.djr-mixtape-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.djr-mix-card {
	background: var(--dark3);
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}
.djr-mix-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.djr-mix-art {
	position: relative;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Mix art gradient backgrounds matching the album cover vibes */
.djr-mix-art--1 {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 40%, #2a0500 100%);
	border-bottom: 3px solid #ff4400;
}
.djr-mix-art--2 {
	background: linear-gradient(135deg, #080810 0%, #0d0d20 50%, #150515 100%);
	border-bottom: 3px solid var(--red);
}
.djr-mix-art--3 {
	background: linear-gradient(135deg, #8b0000 0%, var(--red) 50%, #6b0000 100%);
	border-bottom: 3px solid #ff0000;
}
.djr-mix-art--4 {
	background: linear-gradient(135deg, #050510 0%, #0a0a20 40%, #150a30 100%);
	border-bottom: 3px solid #6644ff;
}
.djr-mix-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}
.djr-mix-card:hover .djr-mix-overlay {
	background: rgba(0,0,0,0.5);
}
.djr-play-btn {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--red);
	border: none;
	color: var(--white);
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.3s, transform 0.3s;
	box-shadow: 0 4px 20px rgba(220,20,60,0.5);
}
.djr-mix-card:hover .djr-play-btn {
	opacity: 1;
	transform: scale(1);
}
.djr-mix-vol {
	position: absolute;
	top: 12px; right: 12px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: rgba(255,255,255,0.6);
	background: rgba(0,0,0,0.4);
	padding: 4px 8px;
	border-radius: 2px;
}
/* Mix art label text */
.djr-mix-art--1::before { content: "TURNT UP!"; }
.djr-mix-art--2::before { content: "TRAP MUSIC"; }
.djr-mix-art--3::before { content: "OLD SCHOOL FREESTYLE"; }
.djr-mix-art--4::before { content: "BREAKBEATS"; }
.djr-mix-art::before {
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--white);
	text-align: center;
	padding: 0 16px;
	line-height: 1.1;
	text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.djr-mix-info {
	padding: 16px 20px 20px;
	text-align: left;
}
.djr-mix-tag {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 6px;
}
.djr-mix-info h4 {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2px;
}
.djr-mix-info p {
	font-size: 0.8rem;
	color: var(--grey);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.djr-contact-section {
	background: var(--black);
	padding: 100px 24px;
	border-top: 1px solid rgba(255,255,255,0.05);
}
.djr-contact-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: start;
}
.djr-contact-left h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin: 8px 0 16px;
	line-height: 1.1;
}
.djr-contact-sub {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--grey);
	margin-bottom: 32px;
}
/* Photo grid */
.djr-contact-photo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	border-radius: 4px;
	overflow: hidden;
}
.djr-contact-photo {
	height: 160px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.djr-cp--1 { background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=400&q=80'); }
.djr-cp--2 { background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=400&q=80'); }
.djr-cp--3 { background-image: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?w=400&q=80'); }
.djr-cp--4 { background-image: url('https://images.unsplash.com/photo-1529543544282-ea669407fca3?w=400&q=80'); }
.djr-cp--1::after,
.djr-cp--2::after,
.djr-cp--3::after,
.djr-cp--4::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
}

/* Contact Form */
.djr-contact-form { display: flex; flex-direction: column; gap: 20px; }
.djr-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.djr-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.djr-form-group--full { grid-column: 1 / -1; }
.djr-form-group label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--grey);
}
.djr-form-group input,
.djr-form-group select,
.djr-form-group textarea {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 4px;
	color: var(--white);
	font-family: var(--font);
	font-size: 0.95rem;
	padding: 14px 16px;
	width: 100%;
	transition: border-color 0.25s, background 0.25s;
	-webkit-appearance: none;
}
.djr-form-group input:focus,
.djr-form-group select:focus,
.djr-form-group textarea:focus {
	outline: none;
	border-color: var(--red);
	background: rgba(220,20,60,0.05);
}
.djr-form-group input::placeholder,
.djr-form-group textarea::placeholder { color: rgba(144,144,160,0.5); }
.djr-form-group select {
	background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23dc143c' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat:   no-repeat;
	background-position: right 14px center;
	background-size:     12px;
	padding-right:       42px;
	cursor:              pointer;
}
.djr-form-group select option { background: #12121a; color: var(--white); }
.djr-form-group input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1) opacity(0.35);
	cursor: pointer;
}
.djr-form-group textarea { resize: vertical; min-height: 100px; }
.djr-btn-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   FOOTER SOCIAL LINKS
   ============================================================ */
.djr-social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 28px;
}
.djr-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.12);
	color: var(--grey);
	text-decoration: none;
	transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.djr-social svg { width: 16px; height: 16px; }
.djr-social:hover {
	border-color: var(--red);
	color: var(--white);
	background: rgba(220,20,60,0.15);
}

/* ============================================================
   MC SERVICES SECTION
   ============================================================ */
.djr-mc-section {
	background: var(--black);
	padding: 120px 24px;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(201,168,76,0.18);
	border-bottom: 1px solid rgba(201,168,76,0.18);
}
/* Centered radial gold glow — gives the section warmth without colour overload */
.djr-mc-section::before {
	content: '';
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 600px;
	background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.10) 0%, transparent 70%);
	pointer-events: none;
}
.djr-mc-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.djr-mc-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
}
.djr-mc-headline {
	font-size: clamp(2rem, 4.5vw, 3.6rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 32px;
	text-shadow: 0 0 60px rgba(201,168,76,0.15), 0 4px 30px rgba(0,0,0,0.7);
}
.djr-mc-body {
	font-size: clamp(1rem, 1.4vw, 1.08rem);
	line-height: 1.9;
	color: var(--light);
	max-width: 760px;
	margin: 0 auto 60px;
}
.djr-mc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 40px;
	max-width: 820px;
	margin: 0 auto 60px;
	text-align: left;
}
.djr-mc-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 22px;
	background: rgba(201,168,76,0.05);
	border: 1px solid rgba(201,168,76,0.16);
	border-radius: 3px;
	transition: background 0.25s, border-color 0.25s;
}
.djr-mc-item:hover {
	background: rgba(201,168,76,0.10);
	border-color: rgba(201,168,76,0.35);
}
.djr-mc-icon {
	color: var(--gold);
	font-size: 0.65rem;
	flex-shrink: 0;
	margin-top: 4px;
}
.djr-mc-item-text {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white);
	line-height: 1.45;
}
.djr-mc-closing {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--gold);
	margin-bottom: 36px;
	letter-spacing: 0.03em;
}
/* Gold CTA button */
.djr-btn-gold {
	background: var(--gold);
	color: var(--black);
	font-weight: 700;
	box-shadow: 0 4px 24px var(--gold-glow);
}
.djr-btn-gold:hover {
	background: #d4b55a;
	box-shadow: 0 8px 36px rgba(201,168,76,0.50);
	color: var(--black);
	transform: translateY(-2px);
}

/* ============================================================
   FOR VENUES SECTION
   ============================================================ */
.djr-venues-section {
	background: var(--black);
	padding: 120px 24px;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(201,168,76,0.18);
	border-bottom: 1px solid rgba(201,168,76,0.18);
}
.djr-venues-section::before {
	content: '';
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
	pointer-events: none;
}
.djr-venues-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.djr-venues-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
}
.djr-venues-headline {
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 32px;
	text-shadow: 0 0 60px rgba(201,168,76,0.12), 0 4px 30px rgba(0,0,0,0.7);
}
.djr-venues-body {
	font-size: clamp(1rem, 1.4vw, 1.08rem);
	line-height: 1.9;
	color: var(--light);
	max-width: 760px;
	margin: 0 auto 64px;
}
.djr-venues-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 60px;
	max-width: 800px;
	margin: 0 auto 64px;
	text-align: left;
}
.djr-venue-item {
	padding: 28px 0 0;
}
.djr-venue-rule {
	height: 1px;
	background: var(--gold);
	opacity: 0.45;
	margin-bottom: 18px;
}
.djr-venue-name {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	font-weight: 400;
	color: var(--gold);
	letter-spacing: 0.01em;
	line-height: 1.3;
	display: block;
}
.djr-venues-divider {
	height: 1px;
	background: rgba(255,255,255,0.10);
	max-width: 600px;
	margin: 0 auto 40px;
}
.djr-venues-cta-text {
	font-size: 1rem;
	font-style: italic;
	color: var(--white);
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto 36px;
}
.djr-venues-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
.djr-btn-gold-outline {
	background: transparent;
	color: var(--gold);
	border: 2px solid var(--gold);
}
.djr-btn-gold-outline:hover {
	background: rgba(201,168,76,0.10);
	border-color: #d4b55a;
	color: #d4b55a;
	transform: translateY(-2px);
}

/* ============================================================
   MEET THE TEAM SECTION
   ============================================================ */
.djr-team-section {
	background: var(--dark);
	padding: 120px 24px;
	border-top: 1px solid rgba(201,168,76,0.18);
	border-bottom: 1px solid rgba(201,168,76,0.18);
	position: relative;
	overflow: hidden;
}
.djr-team-section::before {
	content: '';
	position: absolute;
	bottom: 0; left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 500px;
	background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%);
	pointer-events: none;
}
.djr-team-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.djr-team-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
}
.djr-team-headline {
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 24px;
}
.djr-team-intro {
	font-size: clamp(1rem, 1.4vw, 1.08rem);
	line-height: 1.9;
	color: var(--light);
	max-width: 720px;
	margin: 0 auto 72px;
}

/* --- Team Cards --- */
.djr-team-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 880px;
	margin: 0 auto 80px;
}
.djr-team-card {
	background: var(--dark2);
	border: 1px solid rgba(201,168,76,0.22);
	border-radius: 6px;
	padding: 48px 36px 40px;
	text-align: center;
	transition: border-color 0.3s, transform 0.3s;
}
.djr-team-card:hover {
	border-color: rgba(201,168,76,0.50);
	transform: translateY(-4px);
}
.djr-team-photo-wrap {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 2px solid var(--gold);
	box-shadow: 0 0 0 6px rgba(201,168,76,0.10);
	overflow: hidden;
	margin: 0 auto 28px;
}
.djr-team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.djr-team-name {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--gold);
	letter-spacing: 0.02em;
	margin-bottom: 6px;
}
.djr-team-title {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 20px;
}
.djr-team-bio {
	font-size: 0.96rem;
	line-height: 1.8;
	color: var(--light);
}

/* --- Why Our Team --- */
.djr-team-divider {
	height: 1px;
	background: rgba(201,168,76,0.25);
	max-width: 700px;
	margin: 0 auto 52px;
}
.djr-team-why-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 40px;
}
.djr-team-diff-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 960px;
	margin: 0 auto;
	text-align: left;
}
.djr-team-diff-item {
	background: rgba(201,168,76,0.04);
	border: 1px solid rgba(201,168,76,0.14);
	border-radius: 4px;
	padding: 32px 28px;
	transition: background 0.25s, border-color 0.25s;
}
.djr-team-diff-item:hover {
	background: rgba(201,168,76,0.09);
	border-color: rgba(201,168,76,0.32);
}
.djr-team-diff-num {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	color: var(--gold);
	opacity: 0.35;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}
.djr-team-diff-title {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 10px;
	line-height: 1.35;
}
.djr-team-diff-body {
	font-size: 0.92rem;
	line-height: 1.8;
	color: var(--light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
	.djr-about-inner,
	.djr-feature-row,
	.djr-contact-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.djr-about-visual { display: none; }
	.djr-feature-row--flip .djr-feature-text  { order: 2; }
	.djr-feature-row--flip .djr-feature-visual { order: 1; }
	.djr-feature-icon-wrap { height: 200px; }
	.djr-feature-ring { width: 180px; height: 180px; }
	.djr-feature-glyph { font-size: 5rem; }
	.djr-form-row { grid-template-columns: 1fr; }
	.djr-mc-grid { grid-template-columns: 1fr; gap: 12px; }
	.djr-services-container { grid-template-columns: repeat(2, 1fr); }
	.djr-service-card { height: 320px; }
	.djr-testimonial-grid { grid-template-columns: 1fr; }
	.djr-venues-grid { grid-template-columns: 1fr; gap: 0; }
	.djr-team-cards { grid-template-columns: 1fr; max-width: 480px; }
	.djr-team-diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.djr-nav {
		display: none;
		position: fixed;
		top: 0; left: 0;
		width: 100%; height: 100vh;
		background: rgba(5,5,8,0.98);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 999;
	}
	.djr-nav.open { display: flex; }
	.djr-nav ul {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}
	.djr-nav ul li a { font-size: 1.4rem; }
	.djr-hamburger { display: flex; }

	.djr-hero-stats { gap: 0; }
	.djr-stat { padding: 0 20px; }
	.djr-stat-num { font-size: 1.6rem; }

	.djr-hero-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   HERO SECTION — re-hero-section
   All rules scoped to .re-hero-section to prevent bleed.
   ============================================================ */
.re-hero-section {
  position:relative; width:100%; min-height:100vh;
  background:#000; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  font-family:'Montserrat',sans-serif;
  margin:0; box-sizing:border-box;
  padding-top:var(--nav-h,80px);
}
body.admin-bar .re-hero-section { padding-top:calc(var(--nav-h,80px) + 32px); }

.re-hero-section .re-bg {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 90%, rgba(180,0,0,0.22) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(140,0,0,0.10) 0%, transparent 50%),
              #060606;
}
.re-hero-section .re-ring-wrap { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:1; }
.re-hero-section .re-ring { position:absolute; border-radius:50%; border:1px solid rgba(220,30,30,0.15); animation:re-expandRing ease-out infinite; opacity:0; }
@keyframes re-expandRing { 0%{opacity:0.7;transform:scale(0.3)} 100%{opacity:0;transform:scale(2.2)} }

.re-hero-section .re-spot-wrap { position:absolute; inset:0; overflow:hidden; }
.re-hero-section .re-spot { position:absolute; top:-60px; width:280px; height:500px; transform-origin:top center; }
.re-hero-section .re-spot-inner { width:100%; height:100%; background:conic-gradient(from 0deg at 50% 0%, transparent 78deg, rgba(220,30,30,0.05) 85deg, rgba(220,30,30,0.12) 95deg, rgba(220,30,30,0.05) 105deg, transparent 112deg); }
.re-hero-section .re-s1 { left:10%; animation:re-sw1 6s ease-in-out infinite; }
.re-hero-section .re-s2 { right:10%; animation:re-sw2 8s ease-in-out infinite; }
.re-hero-section .re-s3 { left:40%; animation:re-sw3 10s ease-in-out infinite; }
@keyframes re-sw1 { 0%,100%{transform:rotate(-22deg)} 50%{transform:rotate(12deg)} }
@keyframes re-sw2 { 0%,100%{transform:rotate(20deg)} 50%{transform:rotate(-14deg)} }
@keyframes re-sw3 { 0%,100%{transform:rotate(-6deg)} 50%{transform:rotate(18deg)} }

.re-hero-section .re-particles { position:absolute; inset:0; z-index:2; pointer-events:none; }
.re-hero-section .re-p { position:absolute; border-radius:50%; animation:re-rise linear infinite; opacity:0; }
@keyframes re-rise { 0%{opacity:0;transform:translateY(0) scale(0.4)} 12%{opacity:1} 88%{opacity:0.3} 100%{opacity:0;transform:translateY(-320px) scale(1.4)} }

.re-hero-section .re-strobe { position:absolute; inset:0; background:#fff; z-index:3; opacity:0; animation:re-strobe 8s ease-in-out infinite; pointer-events:none; }
@keyframes re-strobe { 0%,89%,91%,93%,100%{opacity:0} 90%{opacity:0.04} 92%{opacity:0.02} }

.re-hero-section .re-floor { position:absolute; bottom:0; left:0; right:0; height:140px; background:linear-gradient(to top, rgba(200,20,20,0.15) 0%, transparent 100%); z-index:2; }
.re-hero-section .re-crowd { position:absolute; bottom:0; left:0; right:0; display:flex; align-items:flex-end; justify-content:center; z-index:3; }
.re-hero-section .re-person { flex-shrink:0; border-radius:12px 12px 0 0; background:rgba(0,0,0,0.9); animation:re-groove ease-in-out infinite; transform-origin:bottom center; }
@keyframes re-groove { 0%,100%{transform:rotate(-5deg) scaleY(1)} 25%{transform:rotate(0deg) scaleY(1.03)} 50%{transform:rotate(5deg) scaleY(0.97)} 75%{transform:rotate(0deg) scaleY(1.02)} }

.re-hero-section .re-eq { position:absolute; bottom:0; left:0; right:0; height:80px; display:flex; align-items:flex-end; justify-content:center; gap:3px; padding:0 20px; z-index:2; opacity:0.18; }
.re-hero-section .re-bar { flex:1; max-width:10px; background:#dc1e1e; border-radius:2px 2px 0 0; animation:re-eqbar linear infinite; transform-origin:bottom; }
@keyframes re-eqbar { 0%,100%{transform:scaleY(0.15)} 50%{transform:scaleY(1)} }

.re-hero-section .re-overlay { position:absolute; inset:0; z-index:4; background:linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.0) 30%,rgba(0,0,0,0.65) 100%); }

.re-hero-section .re-content { position:relative; z-index:10; text-align:center; padding:2rem 1.5rem 4rem; max-width:900px; width:100%; }

.re-hero-section .re-eyebrow { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:1.2rem; animation:re-fadeUp 0.6s ease 0.1s both; }
.re-hero-section .re-edot { width:5px; height:5px; background:#dc1e1e; border-radius:50%; animation:re-blink 1.8s ease-in-out infinite; }
.re-hero-section .re-edot:last-child { animation-delay:0.9s; }
@keyframes re-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.6)} }
.re-hero-section .re-etext { font-size:10px; font-weight:700; letter-spacing:0.35em; color:rgba(255,255,255,0.65); text-transform:uppercase; }

.re-hero-section .re-hl-wrap { overflow:hidden; margin-bottom:1.2rem; }
.re-hero-section .re-hl1,
.re-hero-section .re-hl2 { font-family:'Bebas Neue',sans-serif; font-size:clamp(3.8rem,9.5vw,7rem); font-weight:400; line-height:0.92; letter-spacing:0.03em; color:#fff; display:block; }
.re-hero-section .re-hl1 { animation:re-slideLeft 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
.re-hero-section .re-hl2 { animation:re-slideRight 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s both; }
@keyframes re-slideLeft { from{opacity:0;transform:translateX(-60px)} to{opacity:1;transform:translateX(0)} }
@keyframes re-slideRight { from{opacity:0;transform:translateX(60px)} to{opacity:1;transform:translateX(0)} }
.re-hero-section .re-accent { color:#dc1e1e; display:inline-block; animation:re-flicker 7s ease-in-out 3s infinite; }
@keyframes re-flicker { 0%,93%,100%{opacity:1} 94%{opacity:0.7} 95%{opacity:1} 96%{opacity:0.8} 97%{opacity:1} }

.re-hero-section .re-ticker-wrap { overflow:hidden; border-top:1px solid rgba(220,30,30,0.3); border-bottom:1px solid rgba(220,30,30,0.3); padding:8px 0; margin-bottom:1.4rem; animation:re-fadeUp 0.6s ease 0.75s both; }
.re-hero-section .re-ticker { display:flex; gap:0; white-space:nowrap; animation:re-scroll 18s linear infinite; }
.re-hero-section .re-titem { font-size:10px; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; color:rgba(255,255,255,0.5); padding:0 28px; flex-shrink:0; }
.re-hero-section .re-titem span { color:#dc1e1e; margin:0 8px; }
@keyframes re-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.re-hero-section .re-tagline { font-size:14px; font-weight:500; color:rgba(255,255,255,0.75); letter-spacing:0.06em; margin-bottom:2rem; animation:re-fadeUp 0.6s ease 0.85s both; }

.re-hero-section .re-cta-wrap { animation:re-fadeUp 0.6s ease 1s both; margin-bottom:0; }
.re-hero-section .re-cta { display:inline-block; font-family:'Montserrat',sans-serif; font-size:12px; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; padding:17px 50px; background:#dc1e1e; color:#fff; border:none; cursor:pointer; position:relative; overflow:hidden; text-decoration:none; transition:background 0.25s,transform 0.2s,box-shadow 0.3s; animation:re-ctaPulse 3s ease-in-out 2s infinite; }
.re-hero-section .re-cta::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent); animation:re-shine 3s ease-in-out 2.5s infinite; }
@keyframes re-shine { 0%,100%{left:-100%} 40%,60%{left:100%} }
@keyframes re-ctaPulse { 0%,100%{box-shadow:0 0 0 0 rgba(220,30,30,0.5)} 50%{box-shadow:0 0 28px 8px rgba(220,30,30,0.2)} }
.re-hero-section .re-cta:hover { background:#f02525; transform:translateY(-3px); }

.re-hero-section .re-stats { display:flex; align-items:center; justify-content:center; gap:0; margin-top:2.5rem; padding-top:2rem; border-top:1px solid rgba(220,30,30,0.2); animation:re-fadeUp 0.6s ease 1.2s both; }
.re-hero-section .re-stat { text-align:center; padding:0 36px; }
.re-hero-section .re-stat-num { display:block; font-family:'Bebas Neue',sans-serif; font-size:2.5rem; font-weight:400; color:#fff; letter-spacing:0.02em; line-height:1; }
.re-hero-section .re-stat-label { display:block; font-size:10px; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-top:6px; }
.re-hero-section .re-stat-div { width:1px; height:48px; background:rgba(220,30,30,0.3); flex-shrink:0; }

@keyframes re-fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

@media (max-width:640px) {
  .re-hero-section .re-stat { padding:0 18px; }
  .re-hero-section .re-stat-num { font-size:1.8rem; }
  .re-hero-section .re-stat-div { height:36px; }
  /* Service card label overflow fix for mobile */
  .djr-service-card h3 { font-size: 1.05rem; letter-spacing: 0.06em; }
}
