/* ================================
   PORTERGEIST ART - PREMIUM DARK THEME
   ================================ */

:root {
    /* Color Palette */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #121212;
    --color-bg-elevated: #1a1a1a;
    --color-text: #e8e8e8;
    --color-text-muted: #a0a0a0;
    --color-accent: #8B0000;
    --color-accent-hover: #b30000;
    --color-accent-dim: rgba(139, 0, 0, 0.15);
    --color-border: #2a2a2a;
    --color-border-light: #3a3a3a;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 20px rgba(139, 0, 0, 0.3);
}

/* ================================
   RESET & BASE
   ================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ================================
   TYPOGRAPHY
   ================================ */

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    text-align: center;
    width: 100%;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    margin: 8px auto 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title:hover::after {
    width: 60%;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

/* ================================
   UTILITIES
   ================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Scroll Reveal */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-text);
}

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('images/hero-bg.png') center / cover no-repeat;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.6) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    background: linear-gradient(to bottom, var(--color-text), var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.hero-location {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- HERO BUTTONS --- */
.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: white;
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta span {
    position: relative;
    z-index: 1;
    transition: letter-spacing 0.4s ease;
}

.hero-cta:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.5),
        0 0 60px rgba(139, 0, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.hero-cta:hover span {
    letter-spacing: 0.22em;
}

/* Secondary: ghost → fill */
.hero-cta-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text-muted);
}

.hero-cta-secondary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* ================================
   PORTFOLIO SECTION
   ================================ */

.portfolio {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(139, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 80%, rgba(80, 0, 0, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #0a0a0a 0%, #0e0608 50%, #0a0a0a 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.4), transparent);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
    background: rgba(139, 0, 0, 0.15);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* --- GALLERY: Tilt + red accent line + reveal --- */
.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #ff4444);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.gallery-item:hover::after {
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--color-accent),
        inset 0 0 30px rgba(139, 0, 0, 0.1);
    border-color: transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
    filter: brightness(0.9) saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(139, 0, 0, 0.2) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-sm);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

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

.gallery-item-caption {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
}

/* Flash badge on gallery items */
.gallery-item.hidden {
    display: none;
}

/* ================================
   FLASH GALLERY
   ================================ */

.flash-gallery {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse at 80% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(100, 0, 0, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #0c0808 0%, #100a0a 50%, #0c0808 100%);
    position: relative;
}

.flash-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.25), transparent);
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

/* --- FLASH: Rotate-in border + desaturate-to-color reveal --- */
.flash-item {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.flash-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        var(--color-accent) 0deg,
        transparent 60deg,
        transparent 180deg,
        var(--color-accent) 240deg,
        transparent 300deg
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    animation: borderSpin 3s linear infinite paused;
}

.flash-item:hover::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes borderSpin {
    to { transform: rotate(360deg); }
}

.flash-item::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--color-bg-elevated);
    z-index: 0;
}

.flash-item > * {
    position: relative;
    z-index: 1;
}

.flash-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.3);
}

.flash-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: grayscale(30%) brightness(0.85);
    position: relative;
    z-index: 1;
}

.flash-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

.flash-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flash-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-accent);
    color: white;
    border-radius: 2px;
}

.flash-badge.claimed {
    background: var(--color-text-muted);
}

.flash-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm);
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(139,0,0,0.15) 60%, transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.flash-item:hover .flash-item-info {
    transform: translateY(0);
}

.flash-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: white;
}

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

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(100, 0, 0, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #0a0a0a 0%, #0d0708 40%, #100a0a 60%, #0a0a0a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.4), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-muted);
}

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

.about-socials {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.social-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.social-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-stat--ig::before {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1), rgba(252, 176, 69, 0.1));
}

.social-stat--tt::before {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), rgba(255, 0, 80, 0.08));
}

.social-stat:hover::before {
    opacity: 1;
}

.social-stat:hover {
    border-color: transparent;
    transform: translateY(-4px);
}

.social-stat--ig:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 12px 30px rgba(225, 48, 108, 0.15);
}

.social-stat--tt:hover {
    border-color: rgba(0, 242, 234, 0.3);
    box-shadow: 0 12px 30px rgba(0, 242, 234, 0.1);
}

.social-stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-stat--ig .social-stat-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-stat--tt .social-stat-icon {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-stat-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.social-stat-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.social-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: 0.02em;
}

.social-stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.social-stat-handle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

/* ================================
   CONSULTATION FORM
   ================================ */

.consultation {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(80, 0, 0, 0.07) 0%, transparent 40%),
        linear-gradient(180deg, #0c0808 0%, #0e0a0a 50%, #0c0808 100%);
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.35), transparent);
}

.consultation-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.consultation-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-elevated);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-dim);
}

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

.file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.file-label svg {
    color: var(--color-accent);
}

.form-group input[type="file"] {
    display: none;
}

.file-info {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ================================
   TIP JAR
   ================================ */

.tips {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse at 60% 40%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #0d0808 50%, #0a0a0a 100%);
    position: relative;
}

.tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.4), transparent);
}

.tips-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tips-intro {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.tip-options {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.tip-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.tip-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.tip-icon svg {
    width: 24px;
    height: 24px;
}

.tip-icon--venmo {
    background: #3D95CE;
}

.tip-icon--cashapp {
    background: #00D632;
}

.tip-icon--paypal {
    background: linear-gradient(135deg, #003087, #009cde);
}

.tip-info {
    display: flex;
    flex-direction: column;
}

.tip-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-text);
}

.tip-handle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.tip-btn:hover {
    transform: translateY(-4px);
    border-color: transparent;
}

.tip-btn:hover .tip-icon {
    transform: scale(1.1);
}

/* Venmo */
.tip-venmo::before {
    background: linear-gradient(135deg, rgba(61, 149, 206, 0.08), rgba(61, 149, 206, 0.02));
}
.tip-venmo:hover {
    border-color: rgba(61, 149, 206, 0.4);
    box-shadow: 0 15px 40px rgba(61, 149, 206, 0.15);
}
.tip-venmo:hover::before { opacity: 1; }
.tip-venmo:hover .tip-name { color: #3D95CE; }

/* Cash App */
.tip-cashapp::before {
    background: linear-gradient(135deg, rgba(0, 214, 50, 0.08), rgba(0, 214, 50, 0.02));
}
.tip-cashapp:hover {
    border-color: rgba(0, 214, 50, 0.4);
    box-shadow: 0 15px 40px rgba(0, 214, 50, 0.15);
}
.tip-cashapp:hover::before { opacity: 1; }
.tip-cashapp:hover .tip-name { color: #00D632; }

/* PayPal */
.tip-paypal::before {
    background: linear-gradient(135deg, rgba(0, 156, 222, 0.08), rgba(0, 48, 135, 0.04));
}
.tip-paypal:hover {
    border-color: rgba(0, 156, 222, 0.4);
    box-shadow: 0 15px 40px rgba(0, 156, 222, 0.15);
}
.tip-paypal:hover::before { opacity: 1; }
.tip-paypal:hover .tip-name { color: #009cde; }

.tips-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0c0808 0%, #060404 100%);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.footer p {
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.footer a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--color-accent);
}

.follow-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.follow-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.follow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.follow-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.follow-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.follow-btn:hover .follow-icon {
    transform: scale(1.1);
}

.follow-btn:hover span {
    letter-spacing: 0.12em;
    transition: letter-spacing 0.4s ease;
}

/* Instagram */
.follow-btn--ig .follow-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.follow-btn--ig::before {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.05));
}
.follow-btn--ig:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
}
.follow-btn--ig:hover::before { opacity: 1; }
.follow-btn--ig:hover .follow-icon { box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4); }

/* TikTok */
.follow-btn--tt .follow-icon {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.follow-btn--tt::before {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), rgba(255, 0, 80, 0.05));
}
.follow-btn--tt:hover {
    border-color: rgba(0, 242, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.15);
}
.follow-btn--tt:hover::before { opacity: 1; }
.follow-btn--tt:hover .follow-icon { box-shadow: 0 4px 15px rgba(0, 242, 234, 0.3); }

/* Facebook */
.follow-btn--fb .follow-icon {
    background: #1877F2;
}
.follow-btn--fb::before {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.03));
}
.follow-btn--fb:hover {
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.15);
}
.follow-btn--fb:hover::before { opacity: 1; }
.follow-btn--fb:hover .follow-icon { box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3); }

.social-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-credit {
    margin-top: 0.5rem;
}

.footer-credit a {
    color: var(--color-accent);
}

/* ================================
   LIGHTBOX
   ================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: var(--spacing-md);
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .flash-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tip-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tip-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .follow-links {
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .consultation-form {
        padding: var(--spacing-md);
    }
}
