/* ============================================
   APEX Custom Motorcycles — Design System
   ============================================ */

:root {
    --primary: #ff6b00;
    --primary-light: #ff8c42;
    --primary-dark: #cc5500;
    --primary-glow: rgba(255, 107, 0, 0.3);
    --brass: #c8a45c;
    --brass-light: #e0c878;
    --brass-dark: #a08040;
    --brass-glow: rgba(200, 164, 92, 0.25);
    --warm-brown: #1f1208;
    --cream: #f0ebe0;
    --bg: #0a0a0a;
    --bg-elevated: #0f0d0a;
    --bg-card: #14110d;
    --bg-surface: #1a1510;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.4);
    --border: rgba(200, 164, 92, 0.1);
    --border-light: rgba(200, 164, 92, 0.25);
    --shadow: 0 8px 32px rgba(200, 164, 92, 0.08);
    --shadow-lg: 0 16px 48px rgba(200, 164, 92, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Playfair Display', Georgia, serif;
    --fire-1: #ff2d00;
    --fire-2: #ff6b00;
    --fire-3: #ffaa00;
    --fire-4: #ffdd44;
    --fire-gradient: linear-gradient(135deg, #ff2d00, #ff6b00, #ffaa00, #ffdd44);
    --cursor-size: 48px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    overflow-y: scroll;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 15%, rgba(255, 60, 0, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 75% 85%, rgba(200, 164, 92, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(255, 170, 0, 0.04) 0%, transparent 45%);
}
body::-webkit-scrollbar { width: 0; background: transparent; }

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

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   Utility
   ============================================ */

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--brass-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 1.25rem;
    position: relative;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--brass);
    opacity: 0.4;
    flex-shrink: 0;
}

.section-label::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--brass);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.7;
    order: 2;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(200, 164, 92, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--primary-glow), 0 0 0 1px rgba(200, 164, 92, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--brass);
    background: rgba(200, 164, 92, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(200, 164, 92, 0.1);
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--primary);
    line-height: 1;
    position: relative;
}

.logo-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--brass);
    opacity: 0.6;
    margin-top: 1px;
    text-align: right;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 1px;
}

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

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

.nav-cta {
    display: none;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-cta:hover {
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem 4rem;
    background: linear-gradient(160deg, #0f0d0a 0%, #0a0806 50%, #080604 100%);
    text-align: center;
}

.garage-door {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 2.5s cubic-bezier(0.8, 0, 0.2, 1);
}

.garage-door::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 6;
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0px,
            transparent calc(14.28% - 10px),
            rgba(120, 120, 120, 0.2) calc(14.28% - 10px),
            rgba(150, 150, 150, 0.4) calc(14.28% - 5px),
            rgba(120, 120, 120, 0.15) calc(14.28% - 5px),
            transparent calc(14.28%)
        );
    background-size: 6px 100%, 6px 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: left 3px center, right 3px center;
}

.garage-door::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -20px;
    right: -20px;
    height: 60px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent);
    pointer-events: none;
    z-index: 10;
}

.garage-door.open {
    transform: translateY(-100%);
}

.garage-panel {
    flex: 1;
    position: relative;
    background:
        linear-gradient(180deg, #4a4540 0%, #3d3833 25%, #35302a 50%, #3a3530 75%, #302b25 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.garage-panel::before {
    content: '';
    position: absolute;
    inset: 7% 5%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.08) 100%);
    border-radius: 3px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.02);
    pointer-events: none;
    z-index: 1;
}

.garage-panel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), rgba(180, 180, 180, 0.1), rgba(255,255,255,0.03), transparent);
    pointer-events: none;
    z-index: 4;
}

.garage-panel:last-child {
    border-bottom: 7px solid rgba(15, 13, 10, 0.95);
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.5);
}

.garage-panel:last-child .garage-hinge {
    display: none;
}

.garage-hinge {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 6px;
    transform: translateY(50%);
    z-index: 5;
    pointer-events: none;
}

.garage-hinge::before, .garage-hinge::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12px;
    height: 6px;
    background: linear-gradient(180deg, #6a6560, #3a3530, #2a2520);
    border-radius: 1px;
    border: 1px solid rgba(150, 150, 150, 0.15);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.garage-hinge::before { left: 0; }
.garage-hinge::after { right: 0; }

.garage-window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 52px;
    margin-left: -40px;
    margin-top: -26px;
    background: radial-gradient(ellipse at center, rgba(255, 120, 0, 0.15), rgba(5, 5, 10, 0.7));
    border: 3px solid rgba(100, 100, 100, 0.3);
    border-radius: 3px;
    box-shadow:
        inset 0 0 30px rgba(255, 100, 0, 0.08),
        0 0 15px rgba(255, 100, 0, 0.03);
    z-index: 2;
}

.garage-window::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    right: 3px;
    height: 2px;
    background: rgba(100, 100, 100, 0.2);
}

.garage-window::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 3px;
    bottom: 3px;
    width: 2px;
    background: rgba(100, 100, 100, 0.2);
}

.garage-rib {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 6px;
    margin-top: -3px;
    background: linear-gradient(90deg, transparent, rgba(100, 100, 100, 0.2) 10%, rgba(150, 150, 150, 0.35) 30%, rgba(200, 200, 200, 0.2) 50%, rgba(150, 150, 150, 0.35) 70%, rgba(100, 100, 100, 0.2) 90%, transparent);
    border-radius: 2px;
    z-index: 2;
}

.garage-rib::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
}

.garage-rib::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
}

.garage-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 20px;
    margin-left: -50px;
    margin-top: -10px;
    background: linear-gradient(180deg, #5a5550, #2a2520, #3a3530);
    border-radius: 3px;
    border: 1px solid rgba(200, 200, 200, 0.15);
    z-index: 8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

.garage-handle::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    top: 5px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1px;
}

.garage-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 10px;
    margin-left: -5px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.garage-lock {
    position: absolute;
    top: 38%;
    right: 22%;
    width: 8px;
    height: 12px;
    background: radial-gradient(circle at 4px 4px, #1a1510 2px, #3a3530 2px, #3a3530 3px, transparent 4px);
    border: 1px solid rgba(150, 150, 150, 0.15);
    border-radius: 1px;
    z-index: 7;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(255, 107, 0, 0.06) 0%, rgba(10, 10, 10, 0.85) 40%, #0a0a0a 100%);
    animation: heroLightBreathe 8s ease-in-out infinite alternate;
}

.hero-video-overlay-2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 30% at 30% 80%, rgba(200, 164, 92, 0.04) 0%, transparent 100%),
        radial-gradient(ellipse 50% 50% at 70% 20%, rgba(255, 45, 0, 0.03) 0%, transparent 100%);
    animation: heroEmber 12s ease-in-out infinite alternate;
}

@keyframes heroLightBreathe {
    0% { opacity: 0.6; background:
        radial-gradient(circle at 25% 45%, rgba(255, 107, 0, 0.08) 0%, rgba(10, 10, 10, 0.85) 40%, #0a0a0a 100%); }
    35% { opacity: 0.8; background:
        radial-gradient(circle at 30% 55%, rgba(255, 180, 50, 0.05) 0%, rgba(10, 10, 10, 0.88) 40%, #0a0a0a 100%); }
    65% { opacity: 0.7; background:
        radial-gradient(circle at 22% 52%, rgba(255, 60, 0, 0.07) 0%, rgba(10, 10, 10, 0.85) 40%, #0a0a0a 100%); }
    100% { opacity: 0.9; background:
        radial-gradient(circle at 28% 48%, rgba(255, 170, 0, 0.06) 0%, rgba(255, 107, 0, 0.03) 30%, rgba(10, 10, 10, 0.85) 50%, #0a0a0a 100%); }
}

@keyframes heroEmber {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.4; }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,0,0,0.6) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0,0,0,0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 660px;
    flex-shrink: 0;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 0.35rem 1rem;
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 480px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Page Hero (inner pages) */
.page-hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 3rem;
    background:
        radial-gradient(ellipse 60% 50% at 40% 30%, rgba(255, 60, 0, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 70%, rgba(200, 164, 92, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #111 0%, #090909 100%);
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.page-hero-sub {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    max-width: 480px;
}

/* ============================================
   Gallery
   ============================================ */

.gallery-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 70% 40% at 30% 20%, rgba(255, 60, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 70% 80%, rgba(200, 164, 92, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 60% 35% at 50% 50%, rgba(255, 170, 0, 0.04) 0%, transparent 55%),
        var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 340px;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gallery-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.image-1 { background: linear-gradient(135deg, #ff6b00 0%, #ff4500 40%, #1a0a00 100%); }
.image-2 { background: linear-gradient(135deg, #1a0a00 0%, #ff4500 60%, #ff6b00 100%); }
.image-3 { background: linear-gradient(135deg, #0a0a0a 0%, #333 50%, #ff6b00 100%); }
.image-4 { background: linear-gradient(135deg, #ff6b00 0%, #1a0a00 50%, #0a0a0a 100%); }
.image-5 { background: linear-gradient(135deg, #2a1000 0%, #ff6b00 50%, #1a0a00 100%); }
.image-6 { background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 50%, #ff6b00 100%); }
.image-7 { background: linear-gradient(135deg, #1a0a00 0%, #ff4500 40%, #2a1000 100%); }
.image-8 { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #ff6b00 100%); }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.65) 0%, rgba(0, 0, 0, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

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

.card-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-tags span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 107, 0, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.card-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
    opacity: 0.8;
}

.card-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

/* ============================================
   Process
   ============================================ */

.process-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 60% 50% at 60% 30%, rgba(200, 164, 92, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 30% 70%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 60%, rgba(255, 45, 0, 0.04) 0%, transparent 50%),
        var(--bg-elevated);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.3;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--bg-elevated), 0 0 0 6px var(--border);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Services
   ============================================ */

.services-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 50% 60% at 50% 40%, rgba(255, 45, 0, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 60% 30% at 80% 20%, rgba(255, 170, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 20% 70%, rgba(200, 164, 92, 0.04) 0%, transparent 50%),
        var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.06) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.06);
}

.service-card.featured:hover {
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
}

.service-tier {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.service-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.service-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.service-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background: var(--bg-elevated);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(24px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author div strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-author div span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ============================================
   Parallax
   ============================================ */

.parallax-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 50;
    overflow: hidden;
    background: var(--bg);
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.parallax-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

.parallax-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 2px;
}

/* ============================================
   Stats
   ============================================ */

.stats-section {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 70% 30% at 40% 60%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 60% 30%, rgba(200, 164, 92, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 40%, rgba(255, 45, 0, 0.04) 0%, transparent 45%),
        var(--bg-elevated);
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 107, 0, 0.04);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.35rem;
    font-family: var(--font-mono);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   About
   ============================================ */

.about-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(200, 164, 92, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 80% 30%, rgba(255, 60, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 70%, rgba(255, 170, 0, 0.03) 0%, transparent 45%),
        var(--bg);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    max-width: 760px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-story p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(24px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.about-card.visible:hover {
    transform: translateY(-6px);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.about-card:hover .about-icon {
    background: rgba(255, 107, 0, 0.2);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

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

/* ============================================
   FAQ
   ============================================ */

.faq-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255, 107, 0, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 30% at 70% 80%, rgba(200, 164, 92, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 25% at 30% 60%, rgba(255, 45, 0, 0.03) 0%, transparent 45%),
        var(--bg-elevated);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Contact
   ============================================ */

.contact-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 50;
    background:
        radial-gradient(ellipse 60% 40% at 40% 60%, rgba(200, 164, 92, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 60% 20%, rgba(255, 170, 0, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse 40% 30% at 30% 30%, rgba(255, 60, 0, 0.04) 0%, transparent 45%),
        var(--bg);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-light);
    background: rgba(255, 107, 0, 0.04);
}

.contact-info-card svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card div strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-info-card div span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
    background: rgba(255, 107, 0, 0.03);
}

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

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ff6b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.contact-form .btn-primary {
    align-self: flex-start;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    z-index: 50;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5% 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-newsletter h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 0.7rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    box-shadow: 0 4px 20px var(--primary-glow);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 0; transform: rotate(-45deg) translateY(-8px); }
    50% { opacity: 1; }
}

/* ============================================
   Responsive
   ============================================ */

/* ============================================
   Premium — Custom Cursor
   ============================================ */

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ff8800;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px #ffcc00, 0 0 14px #ff6600, 0 0 28px rgba(255, 50, 0, 0.6);
}

/* ============================================
   Premium — Page Loader
   ============================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99995;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-rings {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

.loader-ring:nth-child(2) {
    inset: 8px;
    border-top-color: var(--primary-light);
    animation-duration: 1.4s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    inset: 16px;
    border-top-color: rgba(255, 107, 0, 0.5);
    animation-duration: 1.8s;
}

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

.loader-text {
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.loader-bar {
    margin-top: 1rem;
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    animation: loaderBar 1.8s ease-in-out forwards;
}

@keyframes loaderBar {
    0% { width: 0; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* ============================================
   Premium — Magnetic Buttons
   ============================================ */

.btn-primary,
.btn-outline,
.nav-cta,
.card-link,
.service-btn {
    transition: transform 0.2s ease-out;
}

/* ============================================
   Premium — 3D Tilt Cards
   ============================================ */

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card .card-overlay,
.tilt-card .card-content {
    transform-style: preserve-3d;
}

.tilt-card .tilt-float {
    transform: translateZ(20px);
}

/* ============================================
   Premium — Text Reveal
   ============================================ */

.reveal-text {
    overflow: hidden;
}

.reveal-text .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(15deg);
    transition: opacity 0s, transform 0s;
}

.reveal-text .reveal-word.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-text .reveal-word:nth-child(1) { transition-delay: 0s; }
.reveal-text .reveal-word:nth-child(2) { transition-delay: 0.04s; }
.reveal-text .reveal-word:nth-child(3) { transition-delay: 0.08s; }
.reveal-text .reveal-word:nth-child(4) { transition-delay: 0.12s; }
.reveal-text .reveal-word:nth-child(5) { transition-delay: 0.16s; }
.reveal-text .reveal-word:nth-child(6) { transition-delay: 0.2s; }
.reveal-text .reveal-word:nth-child(7) { transition-delay: 0.24s; }
.reveal-text .reveal-word:nth-child(8) { transition-delay: 0.28s; }
.reveal-text .reveal-word:nth-child(9) { transition-delay: 0.32s; }
.reveal-text .reveal-word:nth-child(10) { transition-delay: 0.36s; }
.reveal-text .reveal-word:nth-child(11) { transition-delay: 0.4s; }
.reveal-text .reveal-word:nth-child(12) { transition-delay: 0.44s; }
.reveal-text .reveal-word:nth-child(13) { transition-delay: 0.48s; }
.reveal-text .reveal-word:nth-child(14) { transition-delay: 0.52s; }
.reveal-text .reveal-word:nth-child(15) { transition-delay: 0.56s; }
.reveal-text .reveal-word:nth-child(16) { transition-delay: 0.6s; }
.reveal-text .reveal-word:nth-child(17) { transition-delay: 0.64s; }
.reveal-text .reveal-word:nth-child(18) { transition-delay: 0.68s; }
.reveal-text .reveal-word:nth-child(19) { transition-delay: 0.72s; }
.reveal-text .reveal-word:nth-child(20) { transition-delay: 0.76s; }

/* ============================================
   Premium — Parallax Layer
   ============================================ */

.parallax-layer {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* ============================================
   Vintage-Modern Fusion — Pinstripe Dividers
   ============================================ */

.pinstripe {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.pinstripe-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
    opacity: 0.25;
}

.pinstripe-diamond {
    width: 8px;
    height: 8px;
    border: 1px solid var(--brass);
    transform: rotate(45deg);
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================
   Vintage-Modern Fusion — Hero Workshop Overlay
   ============================================ */

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 30%, rgba(200, 164, 92, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200, 164, 92, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   Vintage-Modern Fusion — Noise Texture
   ============================================ */

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 99991;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* ============================================
   Vintage-Modern Fusion — Est. Badge
   ============================================ */

.est-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass);
    line-height: 1.3;
    opacity: 0.6;
    position: relative;
    padding: 0.4rem 0.6rem;
}

.est-badge::before,
.est-badge::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--brass);
    opacity: 0.3;
    margin: 0.15rem 0;
}

.est-badge strong {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--brass-light);
}

/* ============================================
   Vintage-Modern Fusion — Gradient Text Variants
   ============================================ */

.gradient-text-brass {
    background: linear-gradient(135deg, var(--brass), var(--brass-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-warm {
    background: linear-gradient(135deg, var(--primary), var(--brass));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Vintage-Modern Fusion — Warm Card Tint
   ============================================ */

.gallery-card,
.service-card,
.about-card,
.testimonial-card,
.contact-info-card {
    background: linear-gradient(180deg, rgba(200, 164, 92, 0.02) 0%, var(--bg-card) 100%);
}

.gallery-card:hover,
.service-card:hover,
.about-card:hover,
.testimonial-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Vintage-Modern Fusion — Stat Numbers Serif
   ============================================ */

.stat-item h3 {
    font-family: var(--font-display) !important;
    color: var(--brass) !important;
    font-weight: 700;
    font-style: italic;
}

/* ============================================
   Vintage-Modern Fusion — Badge Capsule Alt
   ============================================ */

.badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass);
    border: 1px solid var(--border);
    padding: 0.3rem 1rem 0.3rem 0.75rem;
    border-radius: 100px;
    background: rgba(200, 164, 92, 0.04);
}

.badge-capsule .badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brass);
    opacity: 0.6;
    flex-shrink: 0;
}

/* ============================================
   Vintage-Modern Fusion — Footer Est. Mark
   ============================================ */

.footer-est {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-style: italic;
    color: var(--text-dim);
}

.footer-est .est-line {
    width: 32px;
    height: 1px;
    background: var(--brass);
    opacity: 0.3;
}

/* ============================================
   Fire/Flame 80s-90s — Decorative Elements
   ============================================ */

.flame-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.flame-divider .flame-icon {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

.flame-divider .flame-icon svg {
    width: 16px;
    height: 16px;
}

.flame-divider .flame-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fire-2), transparent);
    opacity: 0.3;
}

.flame-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire-3);
    padding: 0.3rem 0.8rem;
}

.flame-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 3px;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}

@keyframes flameFlicker {
    0% { opacity: 0.6; transform: scaleY(0.95); }
    50% { opacity: 1; transform: scaleY(1.05); }
    100% { opacity: 0.8; transform: scaleY(1); }
}

@keyframes flameGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 45, 0, 0.15), 0 0 16px rgba(255, 107, 0, 0.08); }
    50% { box-shadow: 0 0 16px rgba(255, 45, 0, 0.25), 0 0 32px rgba(255, 170, 0, 0.12); }
}

.flame-glow {
    animation: flameGlow 2s ease-in-out infinite;
}

.service-card.featured {
    animation: flameGlow 3s ease-in-out infinite;
}

/* Fire gradient backgrounds */
.bg-fire-subtle {
    background: linear-gradient(180deg, rgba(255, 45, 0, 0.03) 0%, transparent 100%);
}

.bg-fire-strong {
    background: linear-gradient(160deg, rgba(255, 45, 0, 0.08) 0%, rgba(255, 107, 0, 0.04) 50%, transparent 100%);
}

/* ============================================
   Card Symmetry — Equal Height Grids
   ============================================ */

.gallery-grid {
    align-items: stretch;
}

.gallery-item {
    display: flex;
}

.gallery-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services-grid {
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .service-btn {
    margin-top: auto;
}

.about-grid {
    align-items: stretch;
}

.about-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-card p:last-child {
    margin-top: auto;
}

.testimonials-grid {
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-author {
    margin-top: auto;
}

/* ============================================
   Animations (additions)
   ============================================ */

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(255, 107, 0, 0.15); }
}

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

.hero-badge {
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ============================================
   Asphalt Texture Overlay
   ============================================ */

.asphalt-overlay {
    position: fixed;
    inset: 0;
    z-index: 99989;
    pointer-events: none;
    opacity: 0.25;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(180,175,160,0.45) 2px, transparent 2px),
        radial-gradient(circle at 45% 60%, rgba(160,155,140,0.35) 2.5px, transparent 2.5px),
        radial-gradient(circle at 80% 10%, rgba(200,190,170,0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 80%, rgba(170,165,150,0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 70%, rgba(190,180,165,0.22) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 40%, rgba(150,145,130,0.2) 1.2px, transparent 1.2px);
    background-size: 50px 50px, 70px 70px, 35px 35px, 55px 55px, 80px 80px, 40px 40px;
    background-repeat: repeat;
}

/* ============================================
   Weld Spark Canvas
   ============================================ */

#weldCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

/* ============================================
   Leather Texture on Cards
   ============================================ */

.about-card,
.gallery-card,
.service-card {
    position: relative;
    isolation: isolate;
}

.about-card::after,
.gallery-card::after,
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(200,164,92,0.18) 3px,
        rgba(200,164,92,0.18) 4px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(200,164,92,0.06) 10px,
        rgba(200,164,92,0.06) 11px
    ),
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 12px,
        rgba(255,107,0,0.04) 12px,
        rgba(255,107,0,0.04) 13px
    );
    background-size: 100% 100%;
    pointer-events: none;
}

/* ============================================
   Heat Burn Titanium Borders
   ============================================ */

.about-card,
.service-card,
.faq-item,
.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.gallery-item {
    position: relative;
}

.about-card::before,
.gallery-item::before,
.service-card::before,
.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(160deg, #4a90d9, #8b5cf6 20%, #ff6b00 55%, #c8a45c 85%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::before {
    border-radius: var(--radius);
}

.about-card:hover::before,
.gallery-item:hover::before,
.service-card:hover::before,
.faq-item:hover::before {
    opacity: 0.4;
}

/* ============================================
   Headlight Cone on Gallery Cards
   ============================================ */

.gallery-card {
    overflow: hidden;
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 140% 80% at 0% 50%, rgba(255,200,100,0.15), transparent 65%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

.gallery-card:hover::before {
    opacity: 1;
}

/* ============================================
   Checkered Flag on CTA Buttons
   ============================================ */

.btn-primary,
.btn-outline,
.nav-cta {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-outline::after,
.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.04) 75%);
    background-size: 10px 10px;
    background-position: 0 0, 0 5px, 5px -5px, -5px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.btn-primary:hover::after,
.btn-outline:hover::after,
.nav-cta:hover::after {
    opacity: 1;
}

/* ============================================
   Embroidery Stitch on Est. Badge
   ============================================ */

.est-badge {
    border: 1.5px dashed rgba(200, 164, 92, 0.35);
    border-radius: 0;
    padding: 0.5rem 0.75rem;
    background: rgba(200, 164, 92, 0.03);
    position: relative;
}

.est-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(200, 164, 92, 0.1);
    border-radius: 0;
    pointer-events: none;
}

/* ============================================
   Blueprint Grid in About Section
   ============================================ */

.about-section {
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,164,92,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,164,92,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: -1px -1px;
    pointer-events: none;
    z-index: 0;
}

.about-section .about-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   6-Column Gallery Grid
   ============================================ */

.gallery-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid-6 .gallery-card {
    height: 300px;
}

/* ============================================
   Process Preview
   ============================================ */

.process-preview {
    padding: 8rem 5%;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255, 107, 0, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 30% at 30% 70%, rgba(200, 164, 92, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 25% at 70% 50%, rgba(255, 170, 0, 0.03) 0%, transparent 45%),
        var(--bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.process-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 0, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: rgba(255, 107, 0, 0.2);
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ============================================
   Video Showcase
   ============================================ */

.video-section {
    padding: 0;
    position: relative;
    height: 80vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-elevated);
}

.video-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.video-bg-clip {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.88) 100%);
    animation: videoAmbient 12s ease-in-out infinite alternate;
}

@keyframes videoAmbient {
    0% { background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.88) 100%); }
    50% { background: linear-gradient(160deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.92) 100%); }
    100% { background: linear-gradient(120deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.35) 50%, rgba(10,10,10,0.85) 100%); }
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    padding: 2rem;
}

.video-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.video-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.video-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 100px;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.video-toggle:hover {
    background: rgba(255, 107, 0, 0.25);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* ============================================
   Contact Cards + Mini Form
   ============================================ */

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-card svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card:hover {
    border-color: var(--border-light);
    color: var(--text);
}

.mini-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 680px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-form input {
    flex: 1;
    min-width: 180px;
    padding: 0.85rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.mini-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.15);
}

.mini-form input::placeholder {
    color: var(--text-dim);
}

.mini-form .btn-primary {
    padding: 0.85rem 2rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .gallery-section,
    .process-section,
    .services-section,
    .testimonials-section,
    .about-section,
    .faq-section,
    .contact-section {
        padding: 6rem 5%;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .gallery-card {
        height: 300px;
    }

    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 4rem 5%;
    }

    .stats-section .stat-item:last-child {
        grid-column: 2;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 35vh;
        padding: 6rem 1.5rem 3rem;
    }
}

@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 1.25rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }

    .process-timeline::before {
        left: 24px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stats-section .stat-item:last-child {
        grid-column: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-section,
    .process-section,
    .services-section,
    .testimonials-section,
    .about-section,
    .faq-section,
    .contact-section {
        padding: 4rem 5%;
    }

    .stats-section {
        padding: 3rem 5%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .page-hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .est-badge {
        font-size: 0.55rem;
    }

    .est-badge strong {
        font-size: 0.7rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        justify-content: center;
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .gallery-card {
        height: 220px;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .gallery-section,
    .process-section,
    .services-section,
    .testimonials-section,
    .about-section,
    .faq-section,
    .contact-section {
        padding: 3rem 5%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.4rem;
    }

    .section-label {
        font-size: 0.6rem;
        gap: 0.5rem;
    }

    .section-label::before {
        width: 16px;
    }

    .card-overlay {
        padding: 1.25rem;
    }

    .card-overlay h3 {
        font-size: 1.2rem;
    }

    .parallax-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
    }
}

/* Touch device overrides */
@media (hover: none) and (pointer: coarse) {
    .gallery-card:hover {
        transform: none;
    }

    .gallery-card:hover .card-image {
        transform: none;
    }

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

    .card-overlay {
        transform: translateY(70%);
        background: linear-gradient(135deg, rgba(255, 107, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%);
    }

    .service-card:hover {
        transform: none;
    }

    .about-card:hover {
        transform: none;
    }
}

/* ============================================
   Custom Scrollbar — Vintage/Fire Theme
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brass), var(--primary));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brass-light), var(--primary-light));
}
@supports (scrollbar-color: auto) {
    * {
        scrollbar-color: var(--primary) var(--bg);
        scrollbar-width: thin;
    }
}

/* ============================================
   Button Ripple Effect
   ============================================ */
.btn-primary,
.btn-outline,
.nav-cta {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 2;
}
@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   Hero Entrance Animation
   ============================================ */
.hero-entrance .est-badge {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-entrance .hero-title {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero-entrance .hero-subtitle {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}
.hero-entrance .hero-actions {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}
.hero-entrance .scroll-indicator {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.hero-entrance .est-badge,
.hero-entrance .hero-title,
.hero-entrance .hero-subtitle,
.hero-entrance .hero-actions,
.hero-entrance .scroll-indicator {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Section Scroll Entrance
   ============================================ */
.section-entrance {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-entrance.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-entrance .section-header .section-label {
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.section-entrance .section-header .section-title {
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.section-entrance .section-header .section-desc {
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.section-entrance .section-header .section-label,
.section-entrance .section-header .section-title,
.section-entrance .section-header .section-desc {
    opacity: 0;
    transform: translateY(20px);
}
.section-entrance.visible .section-header .section-label,
.section-entrance.visible .section-header .section-title,
.section-entrance.visible .section-header .section-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery cards stagger */
.section-entrance .gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-entrance.visible .gallery-item:nth-child(1) { transition-delay: 0.1s; }
.section-entrance.visible .gallery-item:nth-child(2) { transition-delay: 0.18s; }
.section-entrance.visible .gallery-item:nth-child(3) { transition-delay: 0.26s; }
.section-entrance.visible .gallery-item:nth-child(4) { transition-delay: 0.34s; }
.section-entrance.visible .gallery-item:nth-child(5) { transition-delay: 0.42s; }
.section-entrance.visible .gallery-item:nth-child(6) { transition-delay: 0.5s; }
.section-entrance.visible .gallery-item {
    opacity: 1;
    transform: translateY(0);
}

/* Process cards stagger */
.section-entrance .process-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-entrance.visible .process-card:nth-child(1) { transition-delay: 0.1s; }
.section-entrance.visible .process-card:nth-child(2) { transition-delay: 0.22s; }
.section-entrance.visible .process-card:nth-child(3) { transition-delay: 0.34s; }
.section-entrance.visible .process-card {
    opacity: 1;
    transform: translateY(0);
}

/* About cards stagger */
.section-entrance .about-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-entrance.visible .about-card:nth-child(1) { transition-delay: 0.1s; }
.section-entrance.visible .about-card:nth-child(2) { transition-delay: 0.2s; }
.section-entrance.visible .about-card:nth-child(3) { transition-delay: 0.3s; }
.section-entrance.visible .about-card:nth-child(4) { transition-delay: 0.4s; }
.section-entrance.visible .about-card {
    opacity: 1;
    transform: translateY(0);
}

/* Stat items stagger */
.section-entrance .stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-entrance.visible .stat-item:nth-child(1) { transition-delay: 0s; }
.section-entrance.visible .stat-item:nth-child(2) { transition-delay: 0.1s; }
.section-entrance.visible .stat-item:nth-child(3) { transition-delay: 0.2s; }
.section-entrance.visible .stat-item:nth-child(4) { transition-delay: 0.3s; }
.section-entrance.visible .stat-item:nth-child(5) { transition-delay: 0.4s; }
.section-entrance.visible .stat-item {
    opacity: 1;
    transform: translateY(0);
}

/* Contact cards stagger */
.section-entrance .contact-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-entrance.visible .contact-card:nth-child(1) { transition-delay: 0.1s; }
.section-entrance.visible .contact-card:nth-child(2) { transition-delay: 0.2s; }
.section-entrance.visible .contact-card:nth-child(3) { transition-delay: 0.3s; }
.section-entrance.visible .contact-card {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Image Lightbox
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: lightboxFadeIn 0.3s ease;
}
.lightbox.open {
    display: flex;
}
@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-inner {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    animation: lightboxScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lightboxScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.lightbox-image {
    width: 100%;
    height: 100%;
    max-height: 75vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    border: 1px solid var(--border-light);
}
.lightbox-image::before {
    content: '✦';
    margin-right: 0.5rem;
    color: var(--brass);
}
.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-display);
}
.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.lightbox-close:hover {
    opacity: 1;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200,164,92,0.1);
    border: 1px solid var(--border-light);
    color: var(--text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1.3rem;
    opacity: 0.7;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(200,164,92,0.2);
    opacity: 1;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
@media (max-width: 768px) {
    .lightbox-prev { left: 0; }
    .lightbox-next { right: 0; }
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }
    .lightbox-inner {
        max-width: 95vw;
    }
}

/* ============================================
   Responsive additions for new sections
   ============================================ */
@media (max-width: 900px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid-6 .gallery-card {
        height: 280px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid-6 {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .gallery-grid-6 .gallery-card {
        height: 320px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .video-section {
        height: 70vh;
        min-height: 380px;
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 60vh;
        min-height: 320px;
    }
        height: 52px;
    }
    .mini-form input {
        min-width: 100%;
    }
    .mini-form .btn-primary {
        width: 100%;
    }
}
