/* ==========================================================================
   MIIMAAS PORTFOLIO - STYLESHEET
   Aesthetic: Deep Sapphire Blue & Shiny Metallic Gold
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Sapphire Palette */
    --sapphire-base: #050a16;
    --sapphire-deep: #081023;
    --sapphire-navy: #0e1a38;
    --sapphire-card: rgba(13, 23, 51, 0.72);
    --sapphire-card-hover: rgba(18, 33, 71, 0.88);
    --sapphire-input: rgba(8, 16, 36, 0.85);
    --sapphire-border: rgba(30, 52, 107, 0.45);

    /* Metallic Gold Palette */
    --gold-primary: #dfba6a;
    --gold-light: #fae9a9;
    --gold-pale: #fff6d6;
    --gold-bright: #ffeaa7;
    --gold-mid: #c59b3f;
    --gold-dark: #8c6016;
    --gold-deep: #5e3f08;
    --gold-border: rgba(223, 186, 106, 0.32);
    --gold-border-bright: rgba(250, 233, 169, 0.85);

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 28%, #b38728 55%, #fbf5b7 82%, #aa771c 100%);
    --gold-gradient-hover: linear-gradient(135deg, #d4af37 0%, #ffffff 28%, #dfba6a 55%, #fae9a9 82%, #b38728 100%);
    --gold-text-gradient: linear-gradient(135deg, #e8c878 0%, #fff3b8 32%, #dfba6a 65%, #a8761e 100%);
    --gold-border-gradient: linear-gradient(135deg, rgba(191, 149, 63, 0.6), rgba(252, 246, 186, 0.9), rgba(179, 135, 40, 0.5));
    --sapphire-gradient: radial-gradient(ellipse at top, #142857 0%, #081023 55%, #050a16 100%);

    /* Glows & Shadows */
    --gold-glow-sm: 0 0 12px rgba(223, 186, 106, 0.22);
    --gold-glow-md: 0 0 24px rgba(223, 186, 106, 0.35);
    --gold-glow-lg: 0 0 45px rgba(223, 186, 106, 0.45);
    --card-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.65), 0 0 20px rgba(10, 20, 46, 0.4);

    /* Text Colors */
    --text-pure: #ffffff;
    --text-main: #e2e8f5;
    --text-muted: #94a3c4;
    --text-faint: #607198;

    /* Typography */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout */
    --max-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--sapphire-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   3. Celestial Backdrop & Starry Night Particles
   -------------------------------------------------------------------------- */
.celestial-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, #11214a 0%, #070e1f 50%, #040813 100%);
}

.stars-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: none;
}

.star.gold {
    background: var(--gold-light);
    box-shadow: 0 0 6px rgba(250, 233, 169, 0.8);
}

.star.twinkle-1 {
    animation: twinkle 4s ease-in-out infinite alternate;
}

.star.twinkle-2 {
    animation: twinkle 6s ease-in-out infinite alternate 1.5s;
}

.star.twinkle-3 {
    animation: twinkle 5s ease-in-out infinite alternate 3s;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.9; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(0.9); }
}

/* Atmospheric Nebulae */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
    pointer-events: none;
    animation: floatNebula 20s ease-in-out infinite alternate;
}

.nebula-1 {
    top: -10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #25468d 0%, rgba(37, 70, 141, 0) 70%);
}

.nebula-2 {
    top: 40%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #dfba6a 0%, rgba(223, 186, 106, 0) 65%);
    opacity: 0.12;
}

.nebula-3 {
    bottom: -15%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #1a336c 0%, rgba(26, 51, 108, 0) 70%);
}

@keyframes floatNebula {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.08); }
}

/* --------------------------------------------------------------------------
   4. Metallic Gold & Typography Helpers
   -------------------------------------------------------------------------- */
.gold-metallic-title {
    font-family: var(--font-heading);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(223, 186, 106, 0.25);
    letter-spacing: 0.04em;
}

.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.gold-text-subtle {
    color: var(--gold-light);
    font-family: var(--font-heading);
}

.gold-text-bold {
    color: var(--gold-primary);
    font-weight: 700;
}

.gold-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(223, 186, 106, 0.1);
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    box-shadow: 0 0 15px rgba(223, 186, 106, 0.12);
}

.section-badge-wrapper {
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--sapphire-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Shiny Metallic Gold Button */
.btn-gold {
    background: var(--gold-gradient);
    color: #211504;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(191, 149, 63, 0.35), 0 0 0 1px rgba(255, 246, 186, 0.6) inset;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
}

.btn-gold:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(223, 186, 106, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    color: #120b02;
}

.btn-gold:hover::before {
    left: 140%;
}

.btn-gold:active {
    transform: translateY(0);
}

/* Sapphire Outline Button with Gold Accents */
.btn-sapphire-outline {
    background: rgba(14, 26, 56, 0.6);
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    backdrop-filter: blur(10px);
}

.btn-sapphire-outline:hover {
    background: rgba(22, 40, 88, 0.85);
    border-color: var(--gold-light);
    color: #ffffff;
    box-shadow: var(--gold-glow-md);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   6. Navigation Header
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    transition: background-color var(--transition-smooth), padding var(--transition-smooth), border-color var(--transition-smooth);
    background: rgba(5, 10, 22, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(223, 186, 106, 0.12);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(5, 10, 22, 0.92);
    border-bottom-color: var(--gold-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(223, 186, 106, 0.4));
    transition: transform var(--transition-fast);
}

.brand-link:hover .nav-logo {
    transform: rotate(5deg) scale(1.08);
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(223, 186, 106, 0.12);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.nav-btn:hover {
    background: var(--gold-gradient);
    color: #120b02;
    border-color: transparent;
    box-shadow: var(--gold-glow-sm);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   7. Hero Banner: Atmospheric Starry Night Sky
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-starlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    position: relative;
    margin-bottom: 24px;
    cursor: pointer;
}

.hero-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: gentleFloat 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 35px rgba(223, 186, 106, 0.45));
    transition: transform var(--transition-smooth);
}

.hero-logo-wrapper:hover .hero-logo {
    transform: scale(1.06) rotate(3deg);
}

.logo-glow-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 186, 106, 0.3) 0%, rgba(13, 23, 51, 0) 70%);
    filter: blur(25px);
    z-index: 1;
    animation: pulseHalo 4s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes pulseHalo {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-brand {
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.hero-tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dot-sep {
    color: var(--gold-mid);
    opacity: 0.7;
    font-size: 0.85em;
}

.hero-subtext {
    max-width: 580px;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 38px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-wheel {
    width: 3px;
    height: 7px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: wheelBob 2s infinite ease-in-out;
}

@keyframes wheelBob {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   8. About the Artist Section
   -------------------------------------------------------------------------- */
.about-card-container {
    max-width: 1140px;
    margin: 0 auto;
}

.about-featured-card {
    position: relative;
    padding: 48px;
    margin-bottom: 40px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(14, 25, 57, 0.85) 0%, rgba(9, 16, 36, 0.9) 100%);
    border: 1px solid var(--gold-border);
}

.about-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
}

.card-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--gold-mid);
    opacity: 0.4;
    margin-bottom: -15px;
}

.about-primary-text {
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-pure);
    margin-bottom: 28px;
    font-style: italic;
    letter-spacing: 0.01em;
}

.about-author-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-author-signature .gold-text-bold {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
}

.signature-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Milestone Journey Grid (4 Columns) */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.journey-card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.journey-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border-bright);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), var(--gold-glow-md);
}

.journey-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(223, 186, 106, 0.12);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.journey-card:hover .journey-icon-wrap {
    background: var(--gold-gradient);
    color: #1a1003;
    border-color: transparent;
    transform: scale(1.1);
}

.journey-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.journey-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(223, 186, 106, 0.12);
    margin-top: auto;
}

.card-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(223, 186, 106, 0.08);
    border: 1px solid rgba(223, 186, 106, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.card-cta-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
}

.journey-card:hover .card-cta-link {
    color: #ffffff;
    transform: translateY(2px);
    text-shadow: 0 0 8px rgba(223, 186, 106, 0.6);
}

/* --------------------------------------------------------------------------
   9. Portfolio Gallery & Lightbox
   -------------------------------------------------------------------------- */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(13, 23, 51, 0.65);
    border: 1px solid var(--sapphire-border);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    color: var(--text-pure);
    border-color: var(--gold-border);
    background: rgba(20, 36, 80, 0.7);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: #180e03;
    font-weight: 700;
    border-color: transparent;
    box-shadow: var(--gold-glow-sm);
}

.filter-count {
    font-size: 0.8rem;
    opacity: 0.85;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 7px;
    border-radius: 10px;
}

.filter-btn.active .filter-count {
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
    background: var(--sapphire-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border-bright);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), var(--gold-glow-md);
}

.gallery-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: radial-gradient(circle, #0e1a38 0%, #060b18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 22, 0.95) 0%, rgba(8, 16, 35, 0.5) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    transition: opacity var(--transition-smooth);
    z-index: 2;
}

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

.overlay-details {
    transform: translateY(10px);
    transition: transform var(--transition-smooth);
}

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

.overlay-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    background: rgba(223, 186, 106, 0.2);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 6px;
}

.overlay-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.overlay-client {
    font-size: 0.78rem;
    color: var(--gold-light);
    opacity: 0.9;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

.view-btn {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #120b02;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: scale(0.85);
    transition: all var(--transition-fast);
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--gold-glow-md);
}

.item-footer {
    padding: 14px 16px;
    background: rgba(8, 15, 33, 0.85);
    border-top: 1px solid rgba(223, 186, 106, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.item-category-tag {
    font-size: 0.72rem;
    color: var(--gold-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.item-client-tag {
    font-size: 0.72rem;
    color: var(--gold-light);
    opacity: 0.85;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 16, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.lightbox-dialog {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform var(--transition-smooth);
}

.lightbox-modal.active .lightbox-dialog {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(13, 23, 51, 0.7);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--gold-gradient);
    color: #120b02;
    transform: rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 23, 51, 0.75);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-prev {
    left: -65px;
}

.lightbox-next {
    right: -65px;
}

.lightbox-nav-btn:hover {
    background: var(--gold-gradient);
    color: #120b02;
    border-color: transparent;
    box-shadow: var(--gold-glow-md);
}

.lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 82vw;
    max-height: 70vh;
    border-radius: var(--radius-md);
    background: rgba(10, 18, 41, 0.6);
    border: 1px solid var(--gold-border);
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow-md);
}

.lightbox-img {
    max-width: 80vw;
    max-height: 66vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: opacity var(--transition-fast);
}

.lightbox-loading-spinner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(223, 186, 106, 0.2);
    border-top-color: var(--gold-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

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

.lightbox-caption {
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(13, 23, 51, 0.75);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-full);
}

.caption-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.caption-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.caption-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.caption-client {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 500;
}

.caption-counter {
    font-size: 0.85rem;
    color: var(--gold-mid);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. Commission Form Section
   -------------------------------------------------------------------------- */
.commission-wrapper {
    max-width: 840px;
    margin: 0 auto;
}

.commission-card {
    padding: 44px;
    border: 1px solid var(--gold-border);
    background: linear-gradient(155deg, rgba(14, 25, 57, 0.88) 0%, rgba(8, 15, 33, 0.94) 100%);
    box-shadow: var(--card-shadow), var(--gold-glow-sm);
}

.commission-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row-2col > * {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.required-star {
    color: #ff6b6b;
}

.optional-label {
    font-size: 0.8rem;
    color: var(--text-faint);
    font-weight: 400;
}

.input-wrapper {
    position: relative;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: var(--sapphire-input);
    border: 1px solid var(--sapphire-border);
    border-radius: var(--radius-md);
    padding: 13px 18px;
    color: #ffffff;
    font-size: 0.96rem;
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 16px rgba(223, 186, 106, 0.25);
    background: rgba(12, 22, 50, 0.95);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--gold-primary);
    pointer-events: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.form-select option {
    background-color: #0c1633;
    color: #ffffff;
}

.field-error-text {
    font-size: 0.82rem;
    color: #ff7675;
    min-height: 18px;
}

.form-input.invalid, .form-textarea.invalid {
    border-color: #ff7675;
    box-shadow: 0 0 12px rgba(255, 118, 117, 0.25);
}

.other-specify-wrapper {
    animation: fadeInDown 0.3s ease;
}

.other-specify-input {
    border-color: rgba(223, 186, 106, 0.45);
    font-size: 0.92rem;
    padding: 10px 16px;
    background: rgba(10, 20, 44, 0.9);
}

/* Alert Boxes */
.form-alert {
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: fadeInDown 0.4s ease;
}

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

.alert-success {
    background: rgba(223, 186, 106, 0.12);
    border: 1px solid var(--gold-border-bright);
    box-shadow: var(--gold-glow-md);
}

.alert-success .alert-icon {
    color: var(--gold-light);
}

.alert-error {
    background: rgba(235, 77, 75, 0.12);
    border: 1px solid rgba(235, 77, 75, 0.5);
}

.alert-error .alert-icon {
    color: #ff7675;
}

.alert-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.alert-message {
    font-size: 0.92rem;
    color: var(--text-main);
}

.form-submit-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
}

.btn-submit {
    min-width: 260px;
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-submit.loading .btn-spinner {
    display: inline-block;
}

.btn-submit.loading .btn-icon,
.btn-submit.loading .btn-text {
    opacity: 0.7;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-privacy-note {
    font-size: 0.84rem;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --------------------------------------------------------------------------
   12. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    z-index: 2;
    padding: 60px 0 35px;
    background: linear-gradient(to bottom, transparent 0%, #03060e 100%);
    border-top: 1px solid rgba(223, 186, 106, 0.15);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(223, 186, 106, 0.4));
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.12em;
}

.footer-bio {
    max-width: 450px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.92rem;
    color: var(--text-main);
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.back-to-top {
    color: var(--gold-primary);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(223, 186, 106, 0.25) 50%, transparent 100%);
}

.copyright-text {
    font-size: 0.86rem;
    color: var(--text-faint);
    letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lightbox-prev {
        left: -20px;
    }

    .lightbox-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(7, 14, 32, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--gold-border);
        padding: 90px 30px;
        transition: right var(--transition-smooth);
        z-index: 99;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-brand {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .about-featured-card {
        padding: 30px 20px;
    }

    .about-primary-text {
        font-size: 1.15rem;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid .journey-card:last-child {
        grid-column: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .commission-card {
        padding: 26px 18px;
    }

    .btn-submit {
        width: 100%;
    }

    .lightbox-close {
        top: -45px;
        right: 0;
        width: 36px;
        height: 36px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-stage {
        max-width: 95vw;
        max-height: 60vh;
        padding: 10px;
    }

    .lightbox-img {
        max-width: 90vw;
        max-height: 55vh;
    }
}
