/* ── John Newman Theme - Main Stylesheet ── */
/* All component CSS concatenated — no @import waterfall */

/* ══════════════════════════════════════════
   _variables.css
   ══════════════════════════════════════════ */

:root {
    /* Colors */
    --jn-black: #000000;
    --jn-white: #ffffff;
    --jn-gray-100: #f5f5f5;
    --jn-gray-200: #e5e5e5;
    --jn-gray-300: #d4d4d4;
    --jn-gray-400: #a3a3a3;
    --jn-gray-500: #737373;
    --jn-gray-600: #525252;
    --jn-gray-700: #404040;
    --jn-gray-800: #262626;
    --jn-gray-900: #171717;

    /* Dynamic (set via PHP) */
    --jn-body-bg: #000000;
    --jn-hero-bg: #000000;
    --jn-text: var(--jn-white);
    --jn-text-muted: var(--jn-gray-400);

    /* Typography */
    --jn-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --jn-font-size-xs: 0.75rem;
    --jn-font-size-sm: 0.875rem;
    --jn-font-size-base: 1rem;
    --jn-font-size-lg: 1.125rem;
    --jn-font-size-xl: 1.5rem;
    --jn-font-size-2xl: 2rem;
    --jn-font-size-3xl: 3rem;
    --jn-font-size-4xl: 4rem;
    --jn-font-size-5xl: 6rem;

    /* Spacing */
    --jn-space-xs: 0.25rem;
    --jn-space-sm: 0.5rem;
    --jn-space-md: 1rem;
    --jn-space-lg: 2rem;
    --jn-space-xl: 3rem;
    --jn-space-2xl: 5rem;
    --jn-space-3xl: 8rem;

    /* Layout */
    --jn-container-max: 1200px;
    --jn-container-narrow: 800px;
    --jn-header-height: 80px;
    --jn-gutter: clamp(1rem, 4vw, 3rem);

    /* Transitions */
    --jn-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --jn-ease-in: cubic-bezier(0.55, 0, 1, 0.45);
    --jn-ease-out: cubic-bezier(0, 0.55, 0.45, 1);
    --jn-duration: 0.4s;
    --jn-duration-slow: 0.8s;

    /* Z-index scale */
    --jn-z-base: 1;
    --jn-z-header: 100;
    --jn-z-overlay: 200;
    --jn-z-modal: 300;
    --jn-z-toast: 400;
}

/* ══════════════════════════════════════════
   _reset.css
   ══════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: auto; /* GSAP handles smooth scroll */
}

body {
    font-family: var(--jn-font);
    font-size: var(--jn-font-size-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--jn-text);
    background-color: var(--jn-body-bg);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--jn-white);
    text-decoration: none;
    transition: opacity var(--jn-duration) var(--jn-ease);
}

a:hover {
    opacity: 0.7;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--jn-white);
    color: var(--jn-black);
}

/* ScrollSmoother wrapper */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}

/* Standalone container — replaces Bootstrap .container */
.container {
    width: 100%;
    max-width: var(--jn-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--jn-gutter);
    padding-right: var(--jn-gutter);
}

/* ══════════════════════════════════════════
   _typography.css
   ══════════════════════════════════════════ */

.jn-page-title {
    font-size: clamp(var(--jn-font-size-2xl), 5vw, var(--jn-font-size-4xl));
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--jn-space-lg);
    text-align: center;
}

/* Title Split-Merge Effect */
.jn-title-effect {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.jn-title-main {
    display: block;
}

.jn-title-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-text-stroke: 1.5px currentColor;
    color: transparent;
    pointer-events: none;
}

.jn-section-title {
    font-size: clamp(var(--jn-font-size-xl), 3vw, var(--jn-font-size-3xl));
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--jn-space-lg);
}

.jn-content {
    font-size: var(--jn-font-size-base);
    line-height: 1.8;
    color: var(--jn-gray-300);
    max-width: var(--jn-container-narrow);
}

.jn-content p {
    margin-bottom: var(--jn-space-md);
}

.jn-content h2 {
    font-size: var(--jn-font-size-xl);
    font-weight: 700;
    color: var(--jn-white);
    margin: var(--jn-space-xl) 0 var(--jn-space-md);
}

.jn-content h3 {
    font-size: var(--jn-font-size-lg);
    font-weight: 700;
    color: var(--jn-white);
    margin: var(--jn-space-lg) 0 var(--jn-space-sm);
}

.jn-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.jn-content ul, .jn-content ol {
    padding-left: var(--jn-space-lg);
    margin-bottom: var(--jn-space-md);
}

.jn-content li {
    list-style: disc;
    margin-bottom: var(--jn-space-xs);
}

.jn-content strong {
    font-weight: 700;
    color: var(--jn-white);
}

/* Button styles */
.jn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--jn-font);
    font-size: var(--jn-font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--jn-black);
    background: var(--jn-white);
    border: 2px solid var(--jn-white);
    border-radius: 0;
    transition: all var(--jn-duration) var(--jn-ease);
    cursor: pointer;
}

.jn-btn:hover {
    opacity: 1;
    color: var(--jn-white);
    background: transparent;
}

.jn-btn--outline {
    color: var(--jn-white);
    background: transparent;
    border-color: var(--jn-white);
}

.jn-btn--outline:hover {
    color: var(--jn-black);
    background: var(--jn-white);
}

/* Sections */
.jn-section {
    position: relative;
    padding: calc(var(--jn-header-height) + var(--jn-space-2xl)) var(--jn-gutter) var(--jn-space-3xl);
    overflow: hidden;
}

.jn-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--jn-container-max);
    margin: 0 auto;
}

/* Shared background video + blur overlay — fixed, outside scroll wrapper */
.jn-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.jn-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

/* 404 */
.jn-404 {
    min-height: 100vh;
    justify-content: center;
    text-align: center;
}

.jn-404-title {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    opacity: 0.3;
}

.jn-404-text {
    font-size: var(--jn-font-size-lg);
    color: var(--jn-gray-400);
    margin: var(--jn-space-md) 0 var(--jn-space-xl);
}

/* ══════════════════════════════════════════
   _navigation.css
   ══════════════════════════════════════════ */

.jn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--jn-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--jn-gutter);
    z-index: var(--jn-z-header);
    pointer-events: none;
}

.jn-header > * {
    pointer-events: auto;
}

/* Logo */
.jn-logo {
    display: flex;
    align-items: center;
}

.jn-logo img {
    height: 20px;
    width: auto;
    transition: opacity var(--jn-duration) var(--jn-ease);
}

.jn-logo:hover img {
    opacity: 0.7;
}

/* Hamburger */
.jn-hamburger {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: calc(var(--jn-z-overlay) + 10);
    position: relative;
}

.jn-hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--jn-white);
    transition: transform var(--jn-duration) var(--jn-ease),
                opacity var(--jn-duration) var(--jn-ease);
    transform-origin: center;
}

.jn-hamburger.is-active .jn-hamburger-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.jn-hamburger.is-active .jn-hamburger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Fullscreen Overlay */
.jn-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--jn-z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.jn-nav-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
}

.jn-nav-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
}

.jn-nav-menu {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Logo inside overlay */
.jn-nav-logo {
    display: inline-block;
    margin-bottom: var(--jn-space-xl);
    opacity: 0;
    transform: translateY(20px);
}

.jn-nav-logo img {
    height: 30px;
    width: auto;
}

.jn-nav-item {
    display: block;
    margin: var(--jn-space-md) 0;
}

.jn-nav-link {
    font-size: clamp(var(--jn-font-size-2xl), 4vw, var(--jn-font-size-3xl));
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--jn-white);
    opacity: 0;
    transform: translateY(30px);
    display: inline-block;
    position: relative;
    padding: 0.25em 0;
}

.jn-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--jn-white);
    transition: width var(--jn-duration) var(--jn-ease),
                left var(--jn-duration) var(--jn-ease);
}

.jn-nav-link:hover {
    opacity: 1;
}

.jn-nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Active link */
.jn-nav-link.is-current::after {
    width: 100%;
    left: 0;
    opacity: 0.4;
}

/* Social links in nav overlay */
.jn-nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--jn-space-lg);
    margin-top: var(--jn-space-2xl);
    opacity: 0;
}

.jn-nav-social a {
    color: var(--jn-gray-400);
    transition: color var(--jn-duration) var(--jn-ease);
}

.jn-nav-social a:hover {
    color: var(--jn-white);
    opacity: 1;
}

.jn-nav-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ══════════════════════════════════════════
   _hero.css
   ══════════════════════════════════════════ */

.jn-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--jn-hero-bg);
}

.jn-hero--custom {
    height: auto;
}

.jn-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.jn-hero--custom .jn-hero-video {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jn-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.jn-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--jn-gutter);
}

/* Scroll indicator */
.jn-scroll-indicator {
    position: absolute;
    bottom: var(--jn-space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--jn-space-sm);
    opacity: 0.5;
    animation: jn-bounce 2s ease-in-out infinite;
}

.jn-scroll-indicator span {
    font-size: var(--jn-font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.jn-scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: var(--jn-white);
    transform-origin: top;
    animation: jn-grow 2s ease-in-out infinite;
}

@keyframes jn-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes jn-grow {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); }
}

/* Homepage: hero fills entire viewport */
body.home .jn-hero {
    height: 100dvh;
}

/* Homepage h1 — visually hidden, present for SEO */
.jn-hero-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════════
   _footer.css
   ══════════════════════════════════════════ */

.jn-footer {
    padding: 0 var(--jn-gutter) var(--jn-space-xl);
    text-align: center;
}

.jn-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--jn-space-lg);
    margin-bottom: var(--jn-space-lg);
}

.jn-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jn-gray-400);
    transition: color var(--jn-duration) var(--jn-ease),
                transform var(--jn-duration) var(--jn-ease);
}

.jn-footer-social a:hover {
    color: var(--jn-white);
    transform: translateY(-2px);
    opacity: 1;
}

.jn-footer-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.jn-footer-copyright {
    font-size: var(--jn-font-size-xs);
    color: var(--jn-gray-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.jn-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--jn-space-lg);
    margin-top: var(--jn-space-md);
}

.jn-footer-links a {
    font-size: var(--jn-font-size-xs);
    color: var(--jn-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jn-footer-links a:hover {
    color: var(--jn-white);
}

/* Front page: footer fixed over hero */
body.home .jn-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-top: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    padding: var(--jn-space-xl) var(--jn-gutter) var(--jn-space-md);
}

body.home .jn-footer-social {
    gap: var(--jn-space-md);
    margin-bottom: var(--jn-space-sm);
}

body.home .jn-footer-social svg {
    width: 18px;
    height: 18px;
}

body.home .jn-footer-links {
    margin-top: var(--jn-space-xs);
}

/* ══════════════════════════════════════════
   _tour.css
   ══════════════════════════════════════════ */

.jn-tour-section {
    position: relative;
    padding: calc(var(--jn-header-height) + var(--jn-space-2xl)) var(--jn-gutter) var(--jn-space-2xl);
    overflow: hidden;
}

.jn-tour-container {
    position: relative;
    z-index: 1;
    max-width: var(--jn-container-max);
    margin: 0 auto;
}

/* Songkick Widget Mode */
.jn-tour-widget {
    margin-top: var(--jn-space-xl);
}

.jn-tour-widget .songkick-widget-block,
.jn-tour-widget .bit-widget,
.jn-tour-widget [class*="songkick"] {
    font-family: var(--jn-font) !important;
    background: transparent !important;
}

.jn-tour-widget .songkick-events,
.jn-tour-widget .bit-events {
    background: transparent !important;
}

.jn-tour-widget .event-listing,
.jn-tour-widget .bit-event {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: var(--jn-space-lg) 0 !important;
    background: transparent !important;
    transition: background var(--jn-duration) var(--jn-ease);
}

.jn-tour-widget .event-listing:hover,
.jn-tour-widget .bit-event:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.jn-tour-widget .event-listing *,
.jn-tour-widget .bit-event * {
    font-family: var(--jn-font) !important;
    color: var(--jn-white) !important;
}

.jn-tour-widget a[class*="button"],
.jn-tour-widget .bit-button,
.jn-tour-widget [class*="ticket"] {
    font-family: var(--jn-font) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    background: var(--jn-white) !important;
    color: var(--jn-black) !important;
    border: 2px solid var(--jn-white) !important;
    border-radius: 0 !important;
    padding: 0.5rem 1.5rem !important;
    transition: all var(--jn-duration) var(--jn-ease) !important;
}

.jn-tour-widget a[class*="button"]:hover,
.jn-tour-widget .bit-button:hover,
.jn-tour-widget [class*="ticket"]:hover {
    background: transparent !important;
    color: var(--jn-white) !important;
}

/* Empty State */
.jn-tour-empty {
    text-align: center;
    padding: var(--jn-space-3xl) 0;
    color: var(--jn-gray-400);
}

.jn-tour-empty p {
    font-size: var(--jn-font-size-lg);
    margin-bottom: var(--jn-space-md);
}

/* Tour Card List */
.jn-tour-list {
    margin-top: var(--jn-space-xl);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Tour Card */
.jn-tour-card {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: var(--jn-space-lg);
    padding: var(--jn-space-lg) var(--jn-space-lg) var(--jn-space-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: background var(--jn-duration) var(--jn-ease);
    opacity: 0;
}

.jn-tour-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.jn-tour-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.jn-tour-card.is-cancelled {
    opacity: 0.5;
}

/* Date Badge */
.jn-tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-transform: uppercase;
    min-width: 80px;
}

.jn-tour-date-month {
    font-size: var(--jn-font-size-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--jn-gray-400);
    margin-bottom: 4px;
}

.jn-tour-date-day {
    font-size: var(--jn-font-size-3xl);
    font-weight: 800;
    color: var(--jn-white);
    line-height: 1;
}

.jn-tour-date-year {
    font-size: var(--jn-font-size-xs);
    font-weight: 500;
    color: var(--jn-gray-500);
    margin-top: 4px;
}

.jn-tour-date-range {
    font-size: var(--jn-font-size-xs);
    color: var(--jn-gray-400);
    margin-top: 4px;
    white-space: nowrap;
}

/* Event Info */
.jn-tour-info {
    min-width: 0;
}

.jn-tour-name {
    font-size: var(--jn-font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jn-white);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jn-tour-venue {
    font-size: var(--jn-font-size-sm);
    color: var(--jn-gray-300);
    margin: 0 0 2px;
}

.jn-tour-location {
    font-size: var(--jn-font-size-xs);
    color: var(--jn-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Title Rotating Badge */
.jn-tour-title-wrap {
    position: relative;
    text-align: center;
}

.jn-tour-title-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jn-tour-title-badge-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--jn-gray-400);
    animation: jn-badge-rotate 12s linear infinite;
}

@keyframes jn-badge-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.jn-tour-title-badge-icon {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    color: var(--jn-white);
}

/* Outdoor Type Label */
.jn-tour-type-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--jn-white);
    background: rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    margin-bottom: 6px;
}

/* CTA Button */
.jn-tour-cta {
    flex-shrink: 0;
    text-align: right;
}

.jn-tour-btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    font-family: var(--jn-font);
    font-size: var(--jn-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jn-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    transition: all var(--jn-duration) var(--jn-ease);
    white-space: nowrap;
}

a.jn-tour-btn:hover {
    background: var(--jn-white);
    color: var(--jn-black);
    border-color: var(--jn-white);
}

.jn-tour-btn.is-cancelled {
    color: #e53e3e;
    border-color: rgba(229, 62, 62, 0.3);
    cursor: default;
    text-decoration: line-through;
}

.jn-tour-btn.is-tba {
    color: var(--jn-gray-500);
    border-color: rgba(255, 255, 255, 0.15);
    cursor: default;
}

/* Hover Line */
.jn-tour-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--jn-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--jn-duration-slow) var(--jn-ease);
}

.jn-tour-card:hover .jn-tour-line {
    transform: scaleX(1);
}

/* Songkick Attribution */
.jn-tour-attribution {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--jn-space-md);
    padding-top: var(--jn-space-lg);
    opacity: 0;
}

.jn-tour-attribution span {
    font-size: var(--jn-font-size-xs);
    color: var(--jn-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.jn-songkick-link {
    display: block;
}

.jn-songkick-logo {
    height: 32px;
    width: auto;
    color: var(--jn-gray-400);
    transition: color var(--jn-duration) var(--jn-ease);
}

.jn-songkick-link:hover .jn-songkick-logo {
    color: var(--jn-white);
}

/* Admin Sync Button */
.jn-btn-sync {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-family: var(--jn-font);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.jn-btn-sync:hover {
    background: #1d4ed8;
}

.jn-btn-sync:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jn-field-value {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Tour Responsive */
@media (max-width: 768px) {
    .jn-tour-card {
        grid-template-columns: 70px 1fr auto;
        gap: var(--jn-space-md);
        padding: var(--jn-space-md) 0;
    }

    .jn-tour-title-badge {
        width: 100px;
        height: 100px;
    }

    .jn-tour-date-day {
        font-size: var(--jn-font-size-2xl);
    }

    .jn-tour-name {
        font-size: var(--jn-font-size-base);
    }

    .jn-tour-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .jn-tour-title-badge {
        display: none;
    }

    .jn-tour-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--jn-space-lg) var(--jn-space-md);
        gap: var(--jn-space-sm);
    }

    .jn-tour-date {
        flex-direction: row;
        gap: var(--jn-space-sm);
        justify-content: center;
    }

    .jn-tour-date-month {
        margin-bottom: 0;
    }

    .jn-tour-date-day {
        font-size: var(--jn-font-size-xl);
    }

    .jn-tour-date-year {
        margin-top: 0;
    }

    .jn-tour-name {
        white-space: normal;
    }

    .jn-tour-cta {
        text-align: center;
    }

    .jn-tour-btn {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════════════════
   _music.css
   ══════════════════════════════════════════ */

.jn-music-section {
    position: relative;
    padding: calc(var(--jn-header-height) + var(--jn-space-2xl)) var(--jn-gutter) var(--jn-space-3xl);
    overflow: hidden;
}

.jn-music-container {
    position: relative;
    z-index: 1;
    max-width: var(--jn-container-narrow);
    margin: 0 auto;
}

.jn-music-embed {
    margin-top: var(--jn-space-lg);
    border-radius: 12px;
    overflow: hidden;
}

.jn-music-embed iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .jn-music-embed iframe {
        min-height: 500px;
    }
}

/* ══════════════════════════════════════════
   _videos.css
   ══════════════════════════════════════════ */

/* Section & Background */
.jn-videos-section {
    position: relative;
    padding: calc(var(--jn-header-height) + var(--jn-space-2xl)) var(--jn-gutter) var(--jn-space-3xl);
    overflow: hidden;
}

.jn-videos-container {
    position: relative;
    z-index: 1;
    max-width: var(--jn-container-max);
    margin: 0 auto;
}

/* Featured Hero Video Card */
.jn-video-featured {
    margin-top: var(--jn-space-xl);
    perspective: 1200px;
}

.jn-video-featured-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.4s var(--jn-ease);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.jn-video-featured-inner:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 255, 255, 0.03);
}

.jn-video-featured-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--jn-ease), filter 0.8s var(--jn-ease);
}

.jn-video-featured-inner:hover .jn-video-featured-thumb {
    transform: scale(1.03);
    filter: brightness(0.5);
}

.jn-video-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s var(--jn-ease);
}

.jn-video-featured-inner:hover .jn-video-featured-overlay {
    opacity: 1;
}

.jn-video-featured-play {
    width: 80px;
    height: 80px;
    border: 2px solid var(--jn-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--jn-space-lg);
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.4s var(--jn-ease), background 0.4s var(--jn-ease);
}

.jn-video-featured-inner:hover .jn-video-featured-play {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.jn-video-featured-play svg {
    width: 28px;
    height: 28px;
    fill: var(--jn-white);
    margin-left: 4px;
}

.jn-video-featured-title {
    font-size: var(--jn-font-size-2xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 var(--jn-space-lg);
}

.jn-video-featured-cat {
    margin-top: var(--jn-space-sm);
    font-size: var(--jn-font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jn-gray-400);
}

/* Featured card shine overlay */
.jn-video-featured-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(
        600px circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(255, 255, 255, 0.08) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s var(--jn-ease);
}

.jn-video-featured-inner:hover .jn-video-featured-shine {
    opacity: 1;
}

/* Category Filter Tabs */
.jn-video-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--jn-space-xs);
    margin-top: var(--jn-space-2xl);
    position: relative;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.jn-video-filter {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    color: var(--jn-gray-400);
    font-family: var(--jn-font);
    font-size: var(--jn-font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    border-radius: 50px;
    transition: color 0.3s var(--jn-ease);
    white-space: nowrap;
}

.jn-video-filter:hover {
    color: var(--jn-gray-200);
}

.jn-video-filter.is-active {
    color: var(--jn-white);
}

/* Sliding pill indicator */
.jn-video-filter-indicator {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    pointer-events: none;
}

/* 3D Tilt Grid */
.jn-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--jn-space-lg);
    margin-top: var(--jn-space-xl);
    perspective: 1000px;
}

/* Video Card */
.jn-video-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--jn-gray-900);
    border-radius: 8px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.4s var(--jn-ease);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.jn-video-card:hover {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.02);
}

.jn-video-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--jn-duration-slow) var(--jn-ease),
                filter var(--jn-duration-slow) var(--jn-ease);
}

.jn-video-card:hover .jn-video-card-thumb {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.jn-video-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--jn-duration) var(--jn-ease);
    z-index: 2;
}

.jn-video-card:hover .jn-video-card-overlay {
    opacity: 1;
}

.jn-video-card-play {
    width: 56px;
    height: 56px;
    border: 2px solid var(--jn-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--jn-space-md);
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.06);
    transition: transform var(--jn-duration) var(--jn-ease),
                background var(--jn-duration) var(--jn-ease);
}

.jn-video-card:hover .jn-video-card-play {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.12);
}

.jn-video-card-play svg {
    width: 20px;
    height: 20px;
    fill: var(--jn-white);
    margin-left: 3px;
}

.jn-video-card-title {
    font-size: var(--jn-font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0 var(--jn-space-md);
}

.jn-video-card-category {
    position: absolute;
    top: var(--jn-space-md);
    left: var(--jn-space-md);
    font-size: var(--jn-font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0.75rem;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    z-index: 3;
}

/* Tilt shine overlay */
.jn-tilt-shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(
        400px circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s var(--jn-ease);
}

.jn-video-card:hover .jn-tilt-shine {
    opacity: 1;
}

/* Filter: hidden cards */
.jn-video-card.is-hidden {
    display: none;
}

/* Video Lightbox */
.jn-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--jn-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.jn-lightbox.is-open {
    visibility: visible;
    pointer-events: auto;
}

.jn-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
}

.jn-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
}

.jn-lightbox-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.jn-lightbox-close {
    position: absolute;
    top: var(--jn-space-lg);
    right: var(--jn-space-lg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--jn-white);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform var(--jn-duration) var(--jn-ease);
}

.jn-lightbox-close:hover {
    transform: rotate(90deg);
}

.jn-lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Videos Responsive */
@media (max-width: 992px) {
    .jn-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jn-video-featured-inner {
        aspect-ratio: 16/9;
    }

    .jn-video-featured-title {
        font-size: var(--jn-font-size-xl);
    }
}

@media (max-width: 768px) {
    .jn-video-filters {
        gap: 0;
    }

    .jn-video-filter {
        font-size: var(--jn-font-size-xs);
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .jn-videos-grid {
        grid-template-columns: 1fr;
    }

    .jn-video-featured-inner {
        aspect-ratio: 16/9;
        border-radius: 8px;
    }

    .jn-video-featured-play {
        width: 60px;
        height: 60px;
    }

    .jn-video-featured-title {
        font-size: var(--jn-font-size-lg);
    }
}

/* Touch devices: disable 3D tilt */
@media (hover: none) and (pointer: coarse) {
    .jn-video-featured,
    .jn-videos-grid {
        perspective: none;
    }

    .jn-video-featured-inner,
    .jn-video-card {
        transform: none !important;
        transform-style: flat;
    }

    .jn-tilt-shine,
    .jn-video-featured-shine {
        display: none;
    }
}

/* ══════════════════════════════════════════
   _contact.css
   ══════════════════════════════════════════ */

.jn-contact-section {
    position: relative;
    padding: calc(var(--jn-header-height) + var(--jn-space-2xl)) var(--jn-gutter) var(--jn-space-3xl);
    overflow: hidden;
}

.jn-contact-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.jn-contact-form {
    margin-top: var(--jn-space-lg);
}

/* Side-by-side row */
.jn-form-row {
    display: flex;
    gap: var(--jn-space-md);
}

.jn-form-row .jn-form-group {
    flex: 1;
}

/* Form Group */
.jn-form-group {
    position: relative;
    margin-bottom: var(--jn-space-md);
}

/* Floating Label */
.jn-form-label {
    position: absolute;
    left: calc(1rem + 1px);
    top: 50%;
    font-size: var(--jn-font-size-base);
    font-weight: 400;
    color: var(--jn-gray-500);
    text-transform: none;
    letter-spacing: normal;
    pointer-events: none;
    transform-origin: left top;
    transform: translateY(-50%);
    transition: transform 0.2s ease, color 0.2s ease, top 0.2s ease;
}

/* Textarea label — top-aligned, not centered */
.jn-form-textarea ~ .jn-form-label {
    top: 1.1rem;
    transform: none;
}

/* Float up when focused or filled */
.jn-form-input:focus ~ .jn-form-label,
.jn-form-input:not(:placeholder-shown) ~ .jn-form-label,
.jn-form-textarea:focus ~ .jn-form-label,
.jn-form-textarea:not(:placeholder-shown) ~ .jn-form-label {
    top: 0.3rem;
    transform: scale(0.7);
    color: var(--jn-gray-400);
}

/* White label on focus */
.jn-form-input:focus ~ .jn-form-label,
.jn-form-textarea:focus ~ .jn-form-label {
    color: var(--jn-white);
}

/* Form Fields */
.jn-form-input,
.jn-form-select,
.jn-form-textarea {
    width: 100%;
    padding: 1.6rem 1rem 0.4rem;
    font-size: var(--jn-font-size-base);
    color: var(--jn-white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
}

.jn-form-input:focus,
.jn-form-select:focus,
.jn-form-textarea:focus {
    border-color: var(--jn-white);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Hide the space placeholder */
.jn-form-input::placeholder,
.jn-form-textarea::placeholder {
    color: transparent;
}

/* Select */
.jn-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    color: var(--jn-gray-500);
}

.jn-form-select:valid {
    color: var(--jn-white);
}

.jn-form-select option {
    background: var(--jn-black);
    color: var(--jn-white);
}

.jn-form-select option[disabled] {
    color: var(--jn-gray-500);
}

/* Textarea */
.jn-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Honeypot */
.jn-form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Submit */
.jn-form-submit {
    margin-top: var(--jn-space-md);
}

.jn-form-submit .jn-btn {
    width: 100%;
    border-radius: 8px;
}

/* Form Messages */
.jn-form-message {
    padding: var(--jn-space-md) var(--jn-space-lg);
    margin-top: var(--jn-space-md);
    font-size: var(--jn-font-size-sm);
    text-align: center;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--jn-duration) var(--jn-ease),
                transform var(--jn-duration) var(--jn-ease);
}

.jn-form-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.jn-form-message--success {
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.jn-form-message--error {
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Button Loading */
.jn-btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.jn-btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--jn-black);
    border-radius: 50%;
    animation: jn-spin 0.6s linear infinite;
}

@keyframes jn-spin {
    to { transform: rotate(360deg); }
}

/* Contact Responsive */
@media (max-width: 480px) {
    .jn-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ══════════════════════════════════════════
   _modal.css
   ══════════════════════════════════════════ */

.jn-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--jn-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.jn-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.jn-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
}

.jn-modal-content {
    position: relative;
    z-index: 1;
    background: var(--jn-white);
    color: var(--jn-black);
    padding: var(--jn-space-2xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.jn-modal-close {
    position: absolute;
    top: var(--jn-space-md);
    right: var(--jn-space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jn-gray-500);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color var(--jn-duration) var(--jn-ease);
}

.jn-modal-close:hover {
    color: var(--jn-black);
}

.jn-modal-title {
    font-size: var(--jn-font-size-xl);
    font-weight: 700;
    margin-bottom: var(--jn-space-sm);
    color: var(--jn-black);
}

.jn-modal-body {
    font-size: var(--jn-font-size-sm);
    color: var(--jn-gray-600);
    margin-bottom: var(--jn-space-lg);
    line-height: 1.6;
}

.jn-modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--jn-space-sm);
}

.jn-modal-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: var(--jn-font-size-base);
    color: var(--jn-black);
    background: var(--jn-gray-100);
    border: 1px solid var(--jn-gray-200);
    border-radius: 0;
    outline: none;
    transition: border-color var(--jn-duration) var(--jn-ease);
}

.jn-modal-input:focus {
    border-color: var(--jn-black);
}

.jn-modal-btn {
    width: 100%;
    padding: 0.875rem;
    font-size: var(--jn-font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--jn-white);
    background: var(--jn-black);
    border: 2px solid var(--jn-black);
    cursor: pointer;
    transition: all var(--jn-duration) var(--jn-ease);
}

.jn-modal-btn:hover {
    color: var(--jn-black);
    background: transparent;
}

.jn-modal-subtext {
    font-size: var(--jn-font-size-xs);
    color: var(--jn-gray-400);
    margin-top: var(--jn-space-md);
}

.jn-modal-message {
    padding: var(--jn-space-sm) var(--jn-space-md);
    margin-top: var(--jn-space-sm);
    font-size: var(--jn-font-size-sm);
    border-radius: 4px;
}

.jn-modal-message--success {
    color: #166534;
    background: #dcfce7;
}

.jn-modal-message--error {
    color: #991b1b;
    background: #fee2e2;
}

/* ══════════════════════════════════════════
   _social-bar.css
   ══════════════════════════════════════════ */

.jn-social-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: var(--jn-z-header);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--jn-space-md);
    padding: var(--jn-space-xl) var(--jn-gutter) var(--jn-space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
}

.jn-social-bar-cta {
    pointer-events: auto;
    display: inline-block;
    padding: 0.65em 2em;
    font-size: var(--jn-font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jn-black);
    background: var(--jn-white);
    border: none;
    transition: transform var(--jn-duration) var(--jn-ease),
                opacity var(--jn-duration) var(--jn-ease);
}

.jn-social-bar-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.jn-social-bar-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--jn-space-xl);
}

.jn-social-bar-icons a {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jn-white);
    transition: transform var(--jn-duration) var(--jn-ease),
                opacity var(--jn-duration) var(--jn-ease);
}

.jn-social-bar-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.jn-social-bar-icons svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ══════════════════════════════════════════
   _animations.css
   ══════════════════════════════════════════ */

/* Elements waiting to be animated */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="scale-up"] {
    transform: scale(0.9);
}

[data-animate="clip-up"] {
    clip-path: inset(100% 0 0 0);
}

/* Once animated (GSAP adds this) */
[data-animate].is-animated {
    opacity: 1;
    transform: none;
    clip-path: none;
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
}

/* Page transition */
.jn-page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--jn-black);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

/* Smooth reveal for images */
.jn-reveal {
    overflow: hidden;
}

.jn-reveal > * {
    transform: scale(1.2);
    transition: transform 1.2s var(--jn-ease);
}

.jn-reveal.is-revealed > * {
    transform: scale(1);
}

/* ══════════════════════════════════════════
   Global Responsive
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
    :root {
        --jn-header-height: 60px;
    }

    .jn-section {
        padding: var(--jn-space-2xl) var(--jn-gutter);
    }

    .jn-logo img {
        height: 16px;
    }
}
