@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Cinzel+Decorative:wght@400;700;900&family=Space+Mono:wght@400;700&family=Manrope:wght@400;500;700;800&display=swap');

:root {
    --bg-dark: #080808; /* Inky Black */
    --bg-panel: rgba(15, 15, 18, 0.95);
    --text-main: #f5f5f0; /* Bone White */
    --text-muted: #88888c;
    --accent-red: #8b0000; /* Heritage Blood */
    --accent-gold: #d4af37; /* Brass Gold */
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --panel-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 25px;
    
    /* THE RAW COLORS (Against the Heritage) */
    --ink-acid: #ccff00; /* Toxic Yellow */
    --ink-magenta: #ff007f; 
    --ink-cyan: #00fefc;
    
    /* Typography - The Killers */
    --font-tattoo: 'UnifrakturMaguntia', serif; /* Blackletter Signature */
    --font-heading: 'Cinzel Decorative', serif; /* Chiseled Aggression */
    --font-mono: 'Space Mono', monospace; /* The Blueprint */
    --font-body: 'Manrope', sans-serif;
}

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

html {
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* SPLASH SCREEN */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.splash-logo {
    width: 450px;
    max-width: 90%;
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.8));
    animation: splashFade 3s infinite alternate ease-in-out;
    opacity: 0;
}

@keyframes splashFade {
    0% { transform: scale(0.98); opacity: 0.6; filter: brightness(0.6) drop-shadow(0 0 20px var(--accent-red)); }
    100% { transform: scale(1); opacity: 1; filter: brightness(1.2) drop-shadow(0 0 60px var(--accent-gold)); }
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-out, visibility 1s;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('maddog_bulldog_v2.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    z-index: -1;
    filter: contrast(1.1) brightness(0.2) saturate(0.6) grayscale(0.2);
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.85) 100%),
        linear-gradient(to bottom, rgba(8,8,8,0.7), rgba(0,0,0,0.95)); /* Heavy shroud for readability */
    opacity: 0.9;
}

.parallax-section {
    position: relative;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

/* MODERN GRID & RHYTHM */
.frosted-glass, .nav-container, .footer-content {
    max-width: 1280px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.frosted-glass {
    background: var(--bg-panel);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--panel-border);
    border-radius: 0; 
    padding: 80px 60px;
    box-shadow: 20px 20px 0px rgba(139, 0, 0, 0.2); /* Punk offset shadow */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 1150px;
    width: 100%;
    position: relative;
    clip-path: polygon(1% 0%, 100% 1%, 99% 99%, 0% 100%); /* Rugged edges */
}

.frosted-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.frosted-glass:hover {
    box-shadow: 10px 10px 40px rgba(139, 0, 0, 0.4);
    clip-path: polygon(0% 0%, 99% 2%, 100% 100%, 1% 98%);
}

/* THE BARBED WIRE LAYER */
.background-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 L400 200 M50 190 L70 210 M60 190 L80 210 M150 190 L170 210 M160 190 L180 210 M250 190 L270 210 M260 190 L280 210 M350 190 L370 210 M360 190 L380 210' stroke='%238b0000' stroke-width='1' fill='none' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: 0 30%;
    animation: barbDrift 60s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes barbDrift {
    from { background-position: 0 30%; }
    to { background-position: 2000px 30%; }
}

/* SCAM WEAPONIZATION */
.scam-warning-box {
    background: rgba(139, 0, 0, 0.15);
    border: 2px solid var(--accent-red);
    padding: 40px;
    margin: 40px 0;
    position: relative;
    clip-path: polygon(1% 2%, 99% 0%, 100% 98%, 0% 100%);
}

.scam-warning-box h3 {
    font-family: var(--font-heading);
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.scam-warning-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.scam-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-gold);
    text-decoration: underline;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

/* SOCIAL PROOF STRIP */
.trust-strip {
    background: var(--accent-gold);
    color: #000;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 60px -5%;
}

.trust-strip-inner {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

.trust-quote {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-quote::before {
    content: '★';
    color: #000;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ARTIST CATEGORIES */
.artist-category-header {
    font-family: var(--font-tattoo);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin: 60px 0 30px;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 10px;
}

/* HERO SECTION */
#hero {
    min-height: 100vh;
    padding: 80px 5%;
}

.hero-container {
    text-align: center;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-main {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-status-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.status-box {
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 14px 28px;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.status-box span {
    color: var(--accent-gold);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-container { padding: 80px 20px; }
    .hero-status-row { gap: 15px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ed573;
}

/* NAVIGATION */
nav.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(10px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 4px; /* Slight roundness for the shield feel */
    background: url('maddog_bulldog_v2.jpg') center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 10px var(--accent-gold-glow);
}

.brand-text h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.brand-text p {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links .btn-book {
    background: var(--accent-red);
    padding: 10px 24px;
    border-radius: 0;
    opacity: 1;
    border: 1px solid var(--accent-gold);
}

/* HERO REFINEMENTS */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-row {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.scam-notice {
    font-size: 0.8rem;
    color: var(--accent);
    max-width: 500px;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.8;
}

/* SIDE CARD */
.style-card {
    background: linear-gradient(145deg, rgba(40, 20, 10, 0.95), rgba(10, 5, 2, 0.95));
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255, 77, 0, 0.1);
}

.card-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.style-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-cloud span {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.card-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

h1 {
    font-family: var(--font-tattoo);
    font-size: clamp(3rem, 10vw, 7rem); /* MASSIVE Tattoo lettering */
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: none; /* Blackletter looks better in normal case or specific caps */
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.hero-glow-text {
    font-family: var(--font-tattoo);
    background: linear-gradient(45deg, var(--ink-acid), var(--ink-cyan), var(--ink-magenta));
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bleedShift 6s ease infinite;
    filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.2));
    display: block;
    width: 100%;
    letter-spacing: -0.01em;
}

@keyframes bleedShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    display: block;
}

.sub-line {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 0 35px;
    color: var(--text-muted);
}

.credibility {
    margin-bottom: 40px;
    font-size: 1rem;
}

.stars { color: #ffd700; margin-right: 10px; }

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    border: 1px solid var(--accent-gold);
    border-radius: 0;
}

.btn-primary:hover {
    background: #a50000;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* INK BLEED EFFECT */
.ink-bleed {
    position: relative;
    overflow: hidden;
}

.ink-bleed:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--bg-dark);
}

/* PULSE ANIMATION */
@keyframes phonePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pulse-call {
    animation: phonePulse 2s infinite;
}

.btn-tertiary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-tertiary:hover {
    background: rgba(255,255,255,0.2);
}

.scam-warning-micro {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.8;
}

/* MODERN PANELS */
.panel-header {
    margin-bottom: 50px;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 20px;
}

.panel-header h2 {
    font-family: var(--font-heading);
    text-align: left;
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    border-left: 4px solid var(--accent-red);
    padding-left: 20px;
    text-shadow: 3px 3px 0px rgba(139, 0, 0, 0.3);
}

.panel-header p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* INSTAGRAM GRID */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.insta-item {
    aspect-ratio: 1/1;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.insta-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

.insta-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.insta-cta {
    margin-top: 40px;
    text-align: center;
}

.neon-btn {
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transition: all 0.3s ease;
}

.neon-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px var(--neon-cyan);
}

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

/* ABOUT NEW */
.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-main);
}

.about-text-secondary p {
    font-size: 0.95rem;
    color: var(--text-muted);
    border-left: 2px solid var(--accent);
    padding-left: 25px;
}

/* SERVICES MODERN */
.services-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-item {
    margin-bottom: 30px;
}

.service-item h4 {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* TEAM MODERN */
/* TEAM ARTIST GRID */
.team-artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.artist-shot-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    text-decoration: none;
}

.artist-shot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.1);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.artist-shot-card:hover {
    transform: scale(1.03);
    border-color: var(--accent);
    box-shadow: var(--accent-glow);
}

.artist-shot-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0) contrast(1.2);
}

.artist-shot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.artist-shot-card:hover .artist-shot-overlay {
    transform: translateY(0);
}

.artist-shot-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.artist-shot-overlay span {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-member h4 {
    margin-bottom: 10px;
}

.team-placeholder {
    grid-column: span 2;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--panel-border);
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* BOOKING MODERN */
.booking-modern-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
}

.info-block-sec {
    margin-bottom: 50px;
}

.info-block-sec h3 {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.guide-line {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.price-list p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.scam-warn {
    color: var(--accent);
    margin-top: 20px;
}

/* FORM */
.booking-form-pane {
    background: rgba(0,0,0,0.6);
    padding: 50px;
    border-radius: 0;
    border: 1px solid var(--accent-red);
    clip-path: polygon(0.5% 1%, 100% 0%, 99.5% 100%, 0% 99%);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px 18px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 77, 0, 0.2);
}

.btn-full {
    width: 100%;
    padding: 16px;
}

/* ARTIST PROFILE STYLES */
.artist-profile {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 40px;
}

.artist-avatar-large {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.2);
}

.header-details h1 {
    margin: 10px 0;
    font-size: 3.5rem;
}

.badge {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.bio-section h3, .details-section h4 {
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tag {
    background: rgba(255, 77, 0, 0.05);
    border: 1px solid rgba(255, 77, 0, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.detail-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.text-accent { color: var(--accent); }

@media (max-width: 900px) {
    .profile-header { flex-direction: column; text-align: center; }
    .artist-grid { grid-template-columns: 1fr; }
    .header-details h1 { font-size: 2.5rem; }
}

/* QUICK CONSULT MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    padding: 0;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
}

#bot-chat-container {
    height: 600px;
    display: flex;
    flex-direction: column;
}

.bot-header {
    padding: 30px;
    border-bottom: 1px solid var(--panel-border);
}

#bot-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-msg {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.msg-bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.msg-user {
    align-self: flex-end;
    background: var(--accent);
    color: #fff;
}

#bot-input-area {
    padding: 20px;
    border-top: 1px solid var(--panel-border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* FOOTER FIXES */
footer {
    padding: 60px 5%;
    text-align: center;
    margin-top: 100px;
}

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

.neighborhoods {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.map-embed {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--panel-border);
}

/* FOOTER REFINEMENT */
footer.frosted-glass {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin-top: 100px;
}

.footer-content {
    text-align: center;
}

@media (max-width: 800px) {
    .about-grid-new, .services-modern-grid, .team-modern-grid, .booking-modern-layout, .hero-container {
        grid-template-columns: 1fr;
    }
}

/* ULTIMATE REFRESH */
a {
    color: inherit;
}

body.nav-open {
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-brand {
    text-decoration: none;
    color: inherit;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.main-nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-page .hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    align-items: stretch;
    gap: 28px;
    text-align: left;
}

.home-page .hero-main {
    align-items: flex-start;
    text-align: left;
}

.hero-rail {
    display: grid;
    gap: 20px;
}

.hero-rail-card,
.service-card,
.experience-card,
.trust-card,
.aeo-card,
.insta-card,
.booking-form-pane-upgraded {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(7, 7, 10, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.hero-rail-card {
    padding: 24px;
    border-radius: 22px;
}

.rail-kicker,
.service-icon,
.feed-pill,
.experience-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rail-kicker,
.feed-pill {
    background: rgba(255, 77, 0, 0.08);
    border: 1px solid rgba(255, 77, 0, 0.2);
    color: var(--accent);
}

.hero-rail-card h3,
.service-card h3,
.experience-card h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: 0.03em;
    margin: 16px 0 12px;
}

.hero-rail-card p:last-child,
.service-card p,
.experience-card p,
.trust-card p {
    color: var(--text-muted);
}

.btn {
    border-radius: 999px;
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.panel-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
}

.feed-status-wrap {
    max-width: 320px;
    text-align: right;
}

.feed-status-wrap p {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.instagram-grid-live {
    gap: 18px;
}

.insta-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    min-height: 320px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.insta-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 18px 40px rgba(0, 242, 255, 0.12);
}

.insta-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0f1013;
}

.insta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.insta-card:hover .insta-media img {
    transform: scale(1.05);
}

.insta-card-copy {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insta-caption {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.5;
}

.insta-meta {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.insta-skeleton {
    min-height: 320px;
    border-radius: 18px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.03) 80%);
    background-size: 200% 100%;
    animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

.about-utility {
    display: flex;
    align-items: stretch;
}

.trust-stack {
    display: grid;
    gap: 18px;
    width: 100%;
}

.trust-card {
    border-radius: 18px;
    padding: 24px;
}

.trust-card span {
    display: block;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    margin-bottom: 10px;
}

.trust-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card-grid,
.experience-grid,
.aeo-grid {
    display: grid;
    gap: 20px;
}

.service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-grid,
.aeo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.experience-card,
.aeo-card {
    padding: 24px;
    border-radius: 20px;
}

.service-icon,
.experience-step {
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.22);
    color: var(--neon-cyan);
}

.style-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.artist-shot-card img {
    filter: grayscale(0) contrast(1.02);
}

.experience-card p,
.aeo-card p {
    font-size: 0.92rem;
}

.booking-modern-layout-upgraded {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
}

.booking-form-pane-upgraded {
    padding: 34px;
    border-radius: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.input-group-full,
.consent-check {
    grid-column: 1 / -1;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 13px 18px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    font-family: inherit;
}

.input-group select {
    appearance: none;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.consent-check input {
    margin-top: 4px;
}

.form-disclaimer {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.booking-feedback {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.booking-feedback:not(:empty) {
    display: block;
}

.booking-feedback-pending {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.booking-feedback-success {
    background: rgba(46, 213, 115, 0.12);
    border-color: rgba(46, 213, 115, 0.32);
    color: #c9ffd8;
}

.booking-feedback-warning {
    background: rgba(255, 189, 46, 0.12);
    border-color: rgba(255, 189, 46, 0.3);
    color: #ffe3a5;
}

.booking-feedback-error {
    background: rgba(255, 77, 0, 0.12);
    border-color: rgba(255, 77, 0, 0.28);
    color: #ffd0bf;
}

.action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-content-upgraded {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-start;
}

.footer-content-upgraded a,
.contact-box a {
    text-decoration: none;
}

.mobile-dock {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1500;
    background: rgba(10, 10, 12, 0.92);
    border: 1px solid rgba(255, 77, 0, 0.24);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.mobile-dock a {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
}

.close-modal {
    background: transparent;
    border: none;
    line-height: 1;
}

@media (max-width: 1100px) {
    .home-page .hero-container,
    .booking-modern-layout-upgraded,
    .about-grid-new {
        grid-template-columns: 1fr;
    }

    .feed-status-wrap {
        text-align: left;
        max-width: none;
    }
}

@media (max-width: 900px) {
    .service-card-grid,
    .experience-grid,
    .aeo-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .panel-header-split,
    .footer-content-upgraded {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    nav.main-nav {
        padding: 16px 5%;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        right: 5%;
        width: min(320px, 90vw);
        padding: 18px;
        border-radius: 22px;
        background: rgba(10, 10, 12, 0.94);
        border: 1px solid rgba(255, 77, 0, 0.18);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .main-nav.nav-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .brand-text p {
        letter-spacing: 0.12em;
    }

    .hero-status-row,
    .cta-row {
        width: 100%;
    }

    .cta-row {
        flex-wrap: wrap;
    }

    .cta-row .btn {
        width: 100%;
        text-align: center;
    }

    .instagram-grid-live {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-dock {
        display: flex;
    }

    footer.frosted-glass {
        margin-bottom: 100px;
    }
}

@media (max-width: 560px) {
    .frosted-glass {
        padding: 34px 22px;
    }

    .hero-rail-card h3,
    .service-card h3,
    .experience-card h3 {
        font-size: 1.6rem;
    }

    .instagram-grid-live,
    .team-artist-grid {
        grid-template-columns: 1fr;
    }

    .status-box {
        width: 100%;
        justify-content: center;
    }
}

/* ARTIST PORTFOLIO GRID */
.artist-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--panel-border);
}

.artist-portfolio-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid var(--panel-border);
    transition: all 0.4s ease;
    filter: brightness(0.8) contrast(1.1);
}

.artist-portfolio-grid img:hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    filter: brightness(1.1) contrast(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.footer-logistics h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-socials {
    text-align: right;
}

@media (max-width: 900px) {
    .footer-socials { text-align: left; margin-top: 20px; }
}

