:root {
    --bg-dark: #070402;
    --text-main: #f0f0f0;
    --text-muted: #b0b0b0;
    --accent: #ff4d00; /* Sunset Orange-Red */
    --accent-hover: #ff7b00;
    --panel-bg: rgba(15, 8, 4, 0.85); /* Deep brown/black */
    --panel-border: rgba(255, 110, 0, 0.2);
    --glass-blur: 12px;
    --shadow-depth: 0 10px 40px rgba(0,0,0,0.8);
    --accent-glow: 0 0 20px rgba(255, 77, 0, 0.3);
}

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

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    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: 300px;
    filter: drop-shadow(0 0 30px var(--accent));
    animation: splashPulse 2.5s infinite alternate ease-in-out;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes splashPulse {
    0% { transform: scale(0.9); opacity: 0.5; filter: brightness(0.5) drop-shadow(0 0 10px var(--accent)); }
    100% { transform: scale(1); opacity: 1; filter: brightness(1.2) drop-shadow(0 0 40px var(--accent)); }
}

#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-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    filter: brightness(0.3) contrast(1.1) saturate(0.8);
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.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(--panel-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.05), var(--shadow-depth);
    transition: transform 0.2s ease-out, box-shadow 0.3s ease;
    max-width: 1100px;
    width: 100%;
}

.frosted-glass:hover {
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.1), var(--shadow-depth);
}

/* 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(255, 77, 0, 0.05);
    border: 1px solid rgba(255, 77, 0, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-box span {
    color: var(--accent);
}

@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: 50px;
    height: 50px;
    border-radius: 50%;
    background: url('maddoglogo.jpg') center;
    background-size: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.brand-text h2 {
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 0.1em;
}

.brand-text p {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    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);
    padding: 8px 20px;
    border-radius: 100px;
    opacity: 1;
}

/* 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-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.01em;
}

.hero-glow-text {
    background: linear-gradient(to right, #fff 20%, var(--accent) 40%, var(--accent) 60%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    text-shadow: 0 0 30px rgba(255, 77, 0, 0.2);
    display: block;
    width: 100%;
}

@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);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

/* 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 {
    text-align: left;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
}

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

/* GALLERY / WORK */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    aspect-ratio: 4/5;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--panel-border);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, #000);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

/* 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.3);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
}

.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;
}

/* AEO / FAQ STYLES */
.aeo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.aeo-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 77, 0, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.aeo-card:hover {
    border-color: var(--accent);
    background: rgba(255, 77, 0, 0.05);
    transform: translateY(-5px);
}

.aeo-card h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.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;
    }
}
