/* ============================================
   JUNIOR MEDIA MUSIC - Premium Website
   Color palette inspired by gold logo + concert atmosphere
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --gold: #C5A55A;
    --gold-light: #D4B96E;
    --gold-dark: #A8893D;
    --gold-gradient: linear-gradient(135deg, #C5A55A 0%, #E8D5A0 40%, #C5A55A 60%, #A8893D 100%);
    --dark: #0A0A10;
    --dark-sec: #101018;
    --dark-card: #15151F;
    --dark-border: #25253A;
    --purple: #7B2FBE;
    --purple-glow: rgba(123, 47, 190, 0.3);
    --magenta: #C23074;
    --text: #FFFFFF;
    --text-muted: #D5D5E0;
    --overlay-dark: rgba(10, 10, 16, 0.75);
    --overlay-gold: rgba(197, 165, 90, 0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 24px rgba(197, 165, 90, 0.15);
    --font-heading: 'Sora', 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--gold-light); }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    margin-bottom: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

/* --- Animated Gold Divider --- */
.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}
.gold-divider::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    position: relative;
    z-index: 1003;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 1.5px solid rgba(197, 165, 90, 0.4);
    border-radius: 50%;
    padding: 16px;
    margin: -10px 0 -72px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(197, 165, 90, 0.05);
    transition: var(--transition);
}

.nav-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.nav.scrolled .nav-logo {
    width: 90px;
    height: 90px;
    padding: 12px;
    margin: -5px 0 -46px;
    background: rgba(10, 10, 16, 0.95);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 10px 28px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    position: relative;
}
.nav-toggle span {
    width: 28px; height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}
.hero.loaded .hero-bg img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,16,0.4) 0%, rgba(10,10,16,0.6) 50%, rgba(10,10,16,0.95) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(123,47,190,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(197,165,90,0.1) 0%, transparent 50%);
    z-index: 1;
}

/* --- Concert Light Beams --- */
.hero-lights {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-light {
    position: absolute;
    top: -20%;
    width: 3px;
    height: 140%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 70%);
    filter: blur(8px);
    opacity: 0;
    transform-origin: top center;
}

.hero-light--1 {
    left: 10%;
    transform: rotate(-14deg);
    background: linear-gradient(180deg, rgba(197,165,90,0.6) 0%, rgba(197,165,90,0.1) 40%, transparent 65%);
    animation: spotlight1 8s ease-in-out infinite;
}
.hero-light--2 {
    right: 12%;
    transform: rotate(12deg);
    background: linear-gradient(180deg, rgba(123,47,190,0.5) 0%, rgba(123,47,190,0.1) 40%, transparent 60%);
    animation: spotlight2 10s ease-in-out 2s infinite;
}
.hero-light--3 {
    left: 42%;
    transform: rotate(-3deg);
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 35%, transparent 55%);
    animation: spotlight3 12s ease-in-out 4s infinite;
}
.hero-light--4 {
    right: 30%;
    transform: rotate(8deg);
    background: linear-gradient(180deg, rgba(194,48,116,0.45) 0%, rgba(194,48,116,0.1) 35%, transparent 60%);
    animation: spotlight4 9s ease-in-out 6s infinite;
}

@keyframes spotlight1 {
    0%, 100% { opacity: 0; transform: rotate(-14deg) scaleX(1); }
    12% { opacity: 1; transform: rotate(-9deg) scaleX(8); }
    40% { opacity: 0.8; transform: rotate(-16deg) scaleX(5); }
    70% { opacity: 0; transform: rotate(-12deg) scaleX(2); }
}
@keyframes spotlight2 {
    0%, 100% { opacity: 0; transform: rotate(12deg) scaleX(1); }
    18% { opacity: 1; transform: rotate(16deg) scaleX(10); }
    50% { opacity: 0.6; transform: rotate(7deg) scaleX(6); }
    78% { opacity: 0; transform: rotate(10deg) scaleX(2); }
}
@keyframes spotlight3 {
    0%, 100% { opacity: 0; transform: rotate(-3deg) scaleX(1); }
    22% { opacity: 0.9; transform: rotate(1deg) scaleX(12); }
    55% { opacity: 0.5; transform: rotate(-6deg) scaleX(7); }
    82% { opacity: 0; transform: rotate(-4deg) scaleX(3); }
}
@keyframes spotlight4 {
    0%, 100% { opacity: 0; transform: rotate(8deg) scaleX(1); }
    15% { opacity: 1; transform: rotate(13deg) scaleX(9); }
    42% { opacity: 0.7; transform: rotate(5deg) scaleX(5); }
    68% { opacity: 0; transform: rotate(9deg) scaleX(2); }
}

.hero-light--5 {
    left: 28%;
    transform: rotate(-8deg);
    background: linear-gradient(180deg, rgba(197,165,90,0.4) 0%, rgba(197,165,90,0.05) 40%, transparent 60%);
    animation: spotlight5 11s ease-in-out 1s infinite;
}
.hero-light--6 {
    right: 8%;
    transform: rotate(18deg);
    background: linear-gradient(180deg, rgba(123,47,190,0.35) 0%, rgba(123,47,190,0.05) 35%, transparent 55%);
    animation: spotlight6 7s ease-in-out 3.5s infinite;
}

@keyframes spotlight5 {
    0%, 100% { opacity: 0; transform: rotate(-8deg) scaleX(1); }
    20% { opacity: 0.9; transform: rotate(-4deg) scaleX(10); }
    48% { opacity: 0.5; transform: rotate(-11deg) scaleX(6); }
    74% { opacity: 0; transform: rotate(-7deg) scaleX(2); }
}
@keyframes spotlight6 {
    0%, 100% { opacity: 0; transform: rotate(18deg) scaleX(1); }
    14% { opacity: 1; transform: rotate(22deg) scaleX(8); }
    38% { opacity: 0.6; transform: rotate(15deg) scaleX(5); }
    62% { opacity: 0; transform: rotate(19deg) scaleX(2); }
}

/* --- Floating Bokeh Dots --- */
.hero-bokeh {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    filter: blur(1px);
}

.hero-bokeh--1 {
    width: 14px; height: 14px;
    background: radial-gradient(circle, rgba(197,165,90,0.8) 0%, rgba(197,165,90,0) 70%);
    top: 25%; left: 12%;
    animation: bokeh1 7s ease-in-out 1s infinite;
}
.hero-bokeh--2 {
    width: 10px; height: 10px;
    background: radial-gradient(circle, rgba(123,47,190,0.7) 0%, rgba(123,47,190,0) 70%);
    top: 40%; right: 20%;
    animation: bokeh2 9s ease-in-out 3s infinite;
}
.hero-bokeh--3 {
    width: 22px; height: 22px;
    background: radial-gradient(circle, rgba(197,165,90,0.5) 0%, rgba(197,165,90,0) 70%);
    bottom: 35%; left: 30%;
    filter: blur(3px);
    animation: bokeh3 11s ease-in-out 0s infinite;
}
.hero-bokeh--4 {
    width: 12px; height: 12px;
    background: radial-gradient(circle, rgba(194,48,116,0.6) 0%, rgba(194,48,116,0) 70%);
    top: 30%; right: 35%;
    animation: bokeh4 8s ease-in-out 5s infinite;
}
.hero-bokeh--5 {
    width: 8px; height: 8px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    top: 55%; left: 65%;
    animation: bokeh5 6s ease-in-out 2s infinite;
}
.hero-bokeh--6 {
    width: 18px; height: 18px;
    background: radial-gradient(circle, rgba(197,165,90,0.45) 0%, rgba(197,165,90,0) 70%);
    bottom: 25%; right: 15%;
    filter: blur(2px);
    animation: bokeh6 13s ease-in-out 7s infinite;
}

@keyframes bokeh1 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    30% { opacity: 0.8; transform: translate(30px, -20px) scale(1.3); }
    70% { opacity: 0.4; transform: translate(-10px, -40px) scale(0.9); }
}
@keyframes bokeh2 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    25% { opacity: 0.7; transform: translate(-25px, 15px) scale(1.5); }
    65% { opacity: 0.3; transform: translate(15px, -25px) scale(1.1); }
}
@keyframes bokeh3 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    20% { opacity: 0.6; transform: translate(20px, -30px) scale(1.4); }
    50% { opacity: 0.8; transform: translate(-15px, -10px) scale(1.6); }
    80% { opacity: 0.2; transform: translate(5px, 20px) scale(1); }
}
@keyframes bokeh4 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    35% { opacity: 0.6; transform: translate(-20px, 30px) scale(1.2); }
    75% { opacity: 0.3; transform: translate(10px, -15px) scale(0.8); }
}
@keyframes bokeh5 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    40% { opacity: 0.9; transform: translate(15px, -20px) scale(1.5); }
    80% { opacity: 0.2; transform: translate(-20px, 10px) scale(1); }
}
@keyframes bokeh6 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    15% { opacity: 0.5; transform: translate(-30px, -20px) scale(1.3); }
    45% { opacity: 0.7; transform: translate(10px, -40px) scale(1.6); }
    75% { opacity: 0.3; transform: translate(25px, 10px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-content::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 48px auto 0;
    background: linear-gradient(90deg, var(--purple), var(--gold), var(--magenta));
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
    border-radius: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-logo {
    width: 120px;
    margin: 0 auto 32px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
    color: var(--text);
    margin-bottom: 8px;
    animation: fadeInUp 1s ease 0.4s both;
    -webkit-text-fill-color: var(--text);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite 2s;
}
.hero-scroll span {
    display: block;
    width: 24px; height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}
.hero-scroll span::after {
    content: '';
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(240,240,245,0.25);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--purple-glow), transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 6s ease;
}
.about-image:hover img { transform: scale(1.05); }

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197,165,90,0.2);
    border-radius: var(--radius);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 140px; height: 140px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.about-badge .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.about-badge .label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
}

.about-text ul {
    list-style: none;
    margin-top: 24px;
}
.about-text ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}
.about-text ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 12px; height: 2px;
    background: var(--gold);
}

/* --- Stats Counters --- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--dark-border);
}

.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--dark-sec);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: rgba(21, 21, 31, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197,165,90,0.3);
    box-shadow: var(--shadow), 0 0 40px rgba(197,165,90,0.05);
}

.service-icon {
    width: 56px; height: 56px;
    background: rgba(197,165,90,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    transform: scale(1.05);
}
.service-card:hover .service-icon svg { stroke: var(--dark); }

.service-icon svg {
    width: 28px; height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 120px 0;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,16,0.7) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover { box-shadow: 0 8px 32px rgba(197,165,90,0.15); }

.gallery-zoom {
    position: absolute;
    bottom: 16px; left: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}
.gallery-zoom svg {
    width: 18px; height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.lightbox.active img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================
   PARALLAX SECTION (CTA / Break)
   ============================================ */
.parallax-cta {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.parallax-cta-bg {
    position: absolute;
    inset: 0;
}
.parallax-cta-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.parallax-cta .hero-overlay {
    background:
        linear-gradient(180deg, var(--dark) 0%, rgba(10,10,16,0.7) 30%, rgba(10,10,16,0.7) 70%, var(--dark-sec) 100%),
        radial-gradient(ellipse at center, rgba(197,165,90,0.1) 0%, transparent 60%);
}

.parallax-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.parallax-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--text);
}

.parallax-cta-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    padding: 100px 0;
    background: var(--dark-sec);
}

.partners-header {
    text-align: center;
    margin-bottom: 64px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.partner-logo {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    opacity: 0.65;
    filter: brightness(1.4);
    transition: var(--transition);
    cursor: default;
}

.partner-logo:hover {
    opacity: 1;
    background: rgba(255,255,255,0.06);
    border-color: rgba(197,165,90,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.partner-logo img {
    max-height: 60px;
    max-width: 85%;
    width: auto;
    object-fit: contain;
    filter: brightness(1.3);
}

.partner-logo:hover img {
    filter: brightness(1.6);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 120px 0;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.why-item {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-gold);
    opacity: 0;
    transition: var(--transition);
}
.why-item:hover::before { opacity: 1; }

.why-item:hover {
    border-color: rgba(197,165,90,0.3);
    transform: translateY(-6px);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--dark-sec);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    background: rgba(197,165,90,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-icon svg {
    width: 22px; height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--dark-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img { height: 36px; }

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 40px; height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.footer-socials a svg {
    width: 18px; height: 18px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    transition: var(--transition);
}
.footer-socials a:hover svg { stroke: var(--dark); }

/* ============================================
   SCROLL ANIMATIONS (Reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 1s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 1.1s; }
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes scrollDot {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,165,90,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(197,165,90,0); }
}

/* --- Creative Section Shapes --- */
.services::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0; right: 0;
    height: 120px;
    background: var(--dark-sec);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.services { padding-top: 160px; }

.partners::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0; right: 0;
    height: 120px;
    background: var(--dark-sec);
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%);
    z-index: 1;
}

.partners { position: relative; padding-top: 140px; }

.contact::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0; right: 0;
    height: 120px;
    background: var(--dark-sec);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.contact { position: relative; padding-top: 160px; }

/* --- Section z-index for noise texture layering --- */
.hero, .about, .services, .gallery,
.parallax-cta, .partners, .why-us, .contact, .footer {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { max-width: 600px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }

    .services::before,
    .partners::before,
    .contact::before { height: 80px; top: -40px; }
    .services { padding-top: 130px; }
    .partners { padding-top: 120px; }
    .contact { padding-top: 130px; }
}

/* --- Tablet portrait --- */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-logo {
        width: 110px;
        height: 110px;
        padding: 14px;
        margin: -8px 0 -52px;
    }
    .nav.scrolled .nav-logo {
        width: 76px;
        height: 76px;
        padding: 10px;
        margin: -4px 0 -30px;
    }

    /* When menu is open, expand nav to full viewport */
    .nav.menu-open {
        bottom: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
    }
    .nav.menu-open.scrolled {
        bottom: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        box-shadow: none;
        border-bottom: none;
    }

    .nav-links {
        position: absolute;
        inset: 0;
        background: rgba(10,10,16,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1002;
    }
    .nav-links.open { opacity: 1; visibility: visible; }
    .nav-links a { font-size: 1.3rem; }
    .nav-cta { margin-top: 12px; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-logo { width: 90px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }

    .about-badge { width: 110px; height: 110px; bottom: -10px; right: -10px; }
    .about-badge .number { font-size: 2.2rem; }

    .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 2.4rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }

    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-logo { height: 90px; }

    .why-us-grid { grid-template-columns: repeat(2, 1fr); }

    .parallax-cta { padding: 100px 0; }

    section { padding: 80px 0; }
    .services { padding-top: 120px; }
    .partners { padding-top: 110px; }
    .contact { padding-top: 120px; }

    .section-desc { font-size: 1rem; }

    .services::before,
    .partners::before,
    .contact::before { height: 60px; top: -30px; }

    /* Admin responsive */
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: fixed;
        left: -280px;
        width: 260px;
        transition: var(--transition);
        z-index: 100;
    }
    .admin-sidebar.open { left: 0; }
    .admin-main { padding: 24px 16px; }
}

/* --- Mobile --- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .nav-logo {
        width: 90px;
        height: 90px;
        padding: 12px;
        margin: -6px 0 -38px;
    }
    .nav.scrolled .nav-logo {
        width: 64px;
        height: 64px;
        padding: 9px;
        margin: -4px 0 -22px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero-logo { width: 70px; margin-bottom: 20px; }
    .hero-desc { font-size: 0.9rem; }
    .btn { padding: 12px 28px; font-size: 0.85rem; }

    .about-grid { gap: 32px; }
    .about-badge { width: 90px; height: 90px; }
    .about-badge .number { font-size: 1.8rem; }
    .about-badge .label { font-size: 0.6rem; }
    .stats { gap: 12px; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.75rem; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 24px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 8px;
    }
    .gallery-item.wide { grid-column: span 2; }

    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .partner-logo { padding: 20px 16px; height: 76px; }
    .partner-logo img { max-height: 32px; }

    .why-us-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-item { padding: 32px 24px; }
    .why-number { font-size: 2.5rem; }

    .contact-info-item { gap: 14px; }
    .contact-info-icon { width: 44px; height: 44px; min-width: 44px; }

    .parallax-cta { padding: 80px 0; }
    .parallax-cta-content h2 { font-size: 1.5rem; }

    .footer-inner { flex-direction: column; text-align: center; gap: 16px; }

    .section-label { font-size: 0.75rem; letter-spacing: 2px; }
    .section-label::before { width: 24px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(10, 10, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(197, 165, 90, 0.2);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-banner-inner p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.cookie-banner-inner p a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-page {
    padding: 120px 0 80px;
}
.privacy-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.privacy-page .privacy-subtitle {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 0.95rem;
}
.privacy-page h2 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 40px;
    margin-bottom: 16px;
}
.privacy-page p,
.privacy-page li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.privacy-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.privacy-page a {
    color: var(--gold);
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */
.admin-body {
    background: var(--dark);
    min-height: 100vh;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-box {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    width: 400px;
    max-width: 90vw;
    text-align: center;
}

.admin-login-box img { height: 60px; margin: 0 auto 32px; }
.admin-login-box h2 { font-size: 1.5rem; margin-bottom: 8px; }
.admin-login-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }

.admin-login-box input {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 16px;
    outline: none;
    transition: var(--transition);
}
.admin-login-box input:focus { border-color: var(--gold); }
.admin-login-box .btn { width: 100%; justify-content: center; }

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--dark-card);
    border-right: 1px solid var(--dark-border);
    padding: 24px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-logo { height: 40px; margin-bottom: 40px; }

.admin-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}
.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(197,165,90,0.1);
    color: var(--gold);
}

.admin-nav a svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.admin-main {
    padding: 40px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-section {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
}

.admin-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dark-border);
}

.admin-field { margin-bottom: 20px; }
.admin-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.admin-field input,
.admin-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
.admin-field textarea { min-height: 100px; resize: vertical; }
.admin-field input:focus,
.admin-field textarea:focus { border-color: var(--gold); }

.admin-save {
    margin-top: 24px;
}

.admin-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 9999;
}
.admin-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.admin-logout {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}
