/* ==========================================================================
   🎨 DESIGN SYSTEM & VARIABLES — CORVUS LUMEN (100K PESOS DELUXE EDITION)
   ========================================================================== */

:root {
    /* Colors */
    --bg-primary: #0a0a09;
    --bg-secondary: #121210;
    --bg-tertiary: #181816;
    
    --text-primary: #f5f4f0;
    --text-secondary: #a6a49e;
    --text-muted: #5e5c57;
    
    --accent: #d4af37; /* Premium Gold/Bronze */
    --accent-glow: rgba(212, 175, 55, 0.2);
    --border-color: #262623;
    
    /* Project Accent Colors (for hover glows) */
    --c-vesper-crow: #e63946;
    --c-medico-elite: #00b4d8;
    --c-lumin-dental: #70e000;
    --c-vesper-lux: #d4af37;
    --c-dona-rosa: #f77f00;
    --c-vesper-crow-brand: #ffffff;

    /* Fonts */
    --font-serif: 'Cinzel', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 75px;
    
    /* Transition */
    --transition-smooth: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   🔌 BASE STYLES & CURSOR RESET
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    background-color: transparent;
    position: relative;
    padding: 0; /* Removed perimetral paddings */
}

.luxury-bg {
    position: fixed;
    top: -150px;
    left: -100px;
    width: calc(100vw + 200px);
    height: calc(100vh + 300px);
    background: linear-gradient(rgba(10, 10, 9, 0.93), rgba(10, 10, 9, 0.96)), url('assets/bg_luxury_gold.png') repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -10;
    pointer-events: none;
    will-change: transform;
}

body.is-loading {
    overflow: hidden;
}

/* Hide default cursor on desktop when custom cursor is active */
body.has-custom-cursor {
    cursor: none;
}
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor input,
body.has-custom-cursor .work-card {
    cursor: none;
}

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

ul {
    list-style: none;
}

/* 🖥️ SHARP CONTRAST FILTER FOR HIGH RESOLUTION ASSETS (Prevent Bilinear Blurriness) */
img, canvas, .card-bg-image, .header-logo-img, .intro-logo {
    max-width: 100%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Font Helper Classes */
.font-serif {
    font-family: var(--font-serif);
}

.font-outfit {
    font-family: var(--font-sans);
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

.text-dim {
    color: var(--text-secondary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ==========================================================================
   📈 SCROLL PROGRESS BAR
   ========================================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, #ffffff 100%);
    z-index: 10002;
    pointer-events: none;
    transition: width 0.1s ease;
}

/* ==========================================================================
   🖱️ CUSTOM MOUSE CURSOR (Precision Sci-Fi target reticle brackets)
   ========================================================================== */

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    display: none;
    will-change: transform;
}

body.has-custom-cursor .custom-cursor {
    display: block;
}

.cursor-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-left: -2.5px;
    margin-top: -2.5px;
    pointer-events: none;
    z-index: 10001;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    will-change: transform;
}

.cursor-circle {
    position: absolute;
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; 
    background-color: transparent;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Parent circle stays simple; child circle handles rotations/styles to avoid physics lag */
.cursor-circle-inner {
    width: 100%;
    height: 100%;
    border: 1px solid var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-style 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.cursor-crosshair {
    font-size: 8px;
    color: var(--accent);
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    line-height: 1;
}

/* 🎯 HOVERING STATE: Morph into precision spinning reticle brackets */
.custom-cursor.hovering .cursor-circle-inner {
    width: 28px;
    height: 28px;
    border-color: var(--accent);
    border-style: dashed;
    border-width: 1.5px;
    animation: cursorSpin 6s linear infinite;
    box-shadow: 0 0 12px var(--accent-glow);
}

.custom-cursor.hovering .cursor-crosshair {
    opacity: 1;
}

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

/* ==========================================================================
   🌌 3D PRELOADER / INTRO SCREEN
   ========================================================================== */

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    will-change: transform, opacity;
    overflow: hidden;
}

/* Cinematic Shutter Door panels */
.shutter {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--bg-primary);
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    will-change: transform;
}

.shutter-top {
    top: 0;
    border-bottom: 1.2px solid rgba(212, 175, 55, 0.18);
}

.shutter-bottom {
    bottom: 0;
    border-top: 1.2px solid rgba(212, 175, 55, 0.18);
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    z-index: 2; /* Sits on top of the shutter overlays */
    transform-style: preserve-3d;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Zoom away animation on click entering (Passing through gateway) */
.intro-content.zoom-away {
    transform: translate3d(0, 0, 1400px) rotateX(15deg);
    opacity: 0;
}

/* 🪐 CONCENTRIC SOLAR MANDALA PORTAL CONTAINER */
.intro-portal {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.6rem;
    transform-style: preserve-3d;
    will-change: transform;
}

.portal-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
    will-change: transform;
}

.portal-ring {
    transform-origin: center;
}

/* Ring Animations (Opposing rotations) */
.ring-outer {
    animation: rotateCCW 22s linear infinite;
    transition: animation-duration 0.8s ease;
}

.ring-middle {
    animation: rotateCW 16s linear infinite;
    transition: animation-duration 0.8s ease;
}

.ring-inner {
    animation: rotateCCW 11s linear infinite;
    transition: animation-duration 0.8s ease;
}

/* Power up acceleration on Enter Button hover (Cinematic gateway feel) */
.intro-screen.intro-ready .ring-outer {
    animation-duration: 5s;
}

.intro-screen.intro-ready .ring-middle {
    animation-duration: 3.5s;
}

.intro-screen.intro-ready .ring-inner {
    animation-duration: 2.2s;
}

.intro-screen.intro-ready .portal-svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.85));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-screen.intro-ready .portal-logo {
    transform: scale(1.12);
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.85));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-logo {
    position: absolute;
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 50%;
    mix-blend-mode: screen;
    background: transparent !important;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    animation: breathing 4s ease-in-out infinite;
    will-change: transform, filter;
}

@keyframes rotateCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes breathing {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.45)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.75)); }
}

.intro-word-wrapper {
    overflow: hidden;
    height: 5.5rem;
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
}

.intro-word {
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 900;
    letter-spacing: 0.5rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translate3d(0, 110%, 80px) rotateX(90deg);
    transform-origin: bottom center;
    display: inline-block;
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
                letter-spacing 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 🪐 SLEEK ENTER BUTTON IN PRELOADER */
.intro-enter-container {
    margin-top: 2.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.intro-enter-container.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-enter {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 2.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.btn-enter:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.05);
}

.intro-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #ffffff 100%);
    transition: width 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Preloader Transitions */
.intro-screen.animate-in .intro-word {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg);
    letter-spacing: 1.6rem;
}

.intro-screen.animate-in .intro-bar {
    width: 100%;
}

.intro-screen.fade-out {
    pointer-events: none;
    background-color: transparent;
    transition: background-color 1.2s ease, opacity 1s ease;
}

.intro-screen.fade-out .shutter-top {
    transform: translateY(-100%);
}

.intro-screen.fade-out .shutter-bottom {
    transform: translateY(100%);
}

/* ==========================================================================
   🌐 MAIN APP LAYOUT
   ========================================================================== */

.app-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   🧭 FLOATING CAPSULE NAVIGATION HEADER (Magnetic capsule hover pill)
   ========================================================================== */

.main-header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 40px;
    position: sticky;
    top: 25px;
    background-color: rgba(10, 10, 9, 0.65);
    backdrop-filter: blur(15px);
    z-index: 100;
    margin: 1.5rem auto 0.8rem auto;
    padding: 0 2.5rem;
    max-width: var(--max-width);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 8px rgba(212, 175, 55, 0.05);
}

/* 🔊 SOUND TOGGLE BUTTON */
.sound-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    pointer-events: auto;
    margin-right: 0.8rem;
}

.sound-toggle-btn:hover {
    color: var(--accent);
    transform: scale(1.08);
}

.sound-toggle-btn:active {
    transform: scale(0.95);
}

.sound-icon {
    width: 17px;
    height: 17px;
}

.main-header.scroll-active {
    background-color: rgba(10, 10, 9, 0.85);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85), 0 0 15px var(--accent-glow);
    transform: translateY(-5px);
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    background: transparent !important;
    transition: var(--transition-fast);
}

.header-logo-img:hover {
    transform: scale(1.02);
}

.nav-list {
    position: relative;
    display: flex;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
}

.nav-link {
    position: relative;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    display: inline-block;
    z-index: 2; /* Sits above the sliding pill */
    transition: color 0.35s ease;
}

.nav-link:hover {
    color: var(--bg-primary) !important;
    letter-spacing: 2px;
}

/* 💊 MAGNETIC SLIDING HOVER PILL */
.nav-hover-pill {
    position: absolute;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.25s ease;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Header Right Group layout containing Lang Switcher & Contact Btn */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

/* 🌐 LANG SELECTOR WRAPPER */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 2px 4px;
}

.lang-btn.active {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: var(--border-color);
    font-weight: 300;
}

.cta-header-btn {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.65rem 1.35rem;
    border: 1px solid var(--text-primary);
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cta-header-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

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

.menu-bar {
    width: 25px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 1.5rem 0 3rem 0;
    background: transparent; 
    border-bottom: none;
    overflow: hidden;
}

/* ✨ Delicate Global Golden Particle Canvas */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* 🪐 KINETIC LIQUID GOLD TYPOGRAPHY BACKDROP */
.hero-typography {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.kinetic-text-svg {
    width: 100%;
    height: auto;
    max-height: 55vh;
    padding: 10px 0;
    overflow: visible;
    animation: floating-text 8s ease-in-out infinite alternate;
    transform-style: preserve-3d;
    will-change: transform;
    transform-origin: center center;
}

@keyframes floating-text {
    0% { transform: translateY(-10px) scale(1); }
    50% { transform: translateY(10px) scale(1.006); }
    100% { transform: translateY(-10px) scale(1); }
}

.giant-svg-text {
    font-size: 175px;
    font-weight: 900;
    letter-spacing: 21px;
    fill: url(#gold-metallic-gradient);
    stroke: rgba(212, 175, 55, 0.35);
    stroke-width: 0.6px;
    opacity: 0.92;
    text-anchor: middle;
    transition: font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                letter-spacing 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.5s ease;
    user-select: none;
}

.giant-svg-text.highlight {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
}

/* OVERLAID CONTENT GRID */
.hero-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.hero-top-row {
    pointer-events: auto;
}

.hero-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    width: 100%;
    gap: 1.5rem;
}

/* 🎛️ HORIZONTAL CATEGORIES ROW (Completely borderless & transparent) */
.hero-categories-row {
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: auto;
    margin: 0;
}

.hero-categories {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 0.5rem 1.4rem;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.hero-categories:hover {
    border: none;
    box-shadow: none;
}

.cat-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-outfit);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.6rem 1.2rem;
    position: relative;
}

.cat-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.cat-btn:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.65);
}

.cat-btn:hover::after {
    width: 80%;
}

.cat-num {
    color: var(--accent);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-right: 0.4rem;
}



/* Clean, borderless and boxless description bar */
.hero-footer-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: auto;
    gap: 4rem;
}

.hero-footer-strip .desc-col {
    flex: 1.5;
}

.hero-footer-strip .actions-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.header-logo-text:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #aa8a2a 50%, #d4af37 100%);
    background-size: 200% 200%;
    color: #0a0a09;
    padding: 0.95rem 2.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.18), 0 1px 3px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35), 0 0 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    color: #0a0a09;
    border-color: rgba(245, 224, 160, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.95rem 2.2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.04);
    backdrop-filter: blur(8px);
    color: var(--accent);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover {
    border-color: rgba(212, 175, 55, 0.55);
    color: #f5e0a0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12), 0 0 8px rgba(212, 175, 55, 0.06);
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.08);
}

.btn-secondary:hover::before {
    opacity: 1;
}

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

/* Removed background gradients to ensure transparency */

/* ==========================================================================
   🖼️ EDITORIAL DESIGN MARGIN LABELS
   ========================================================================== */

.editorial-marker {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    user-select: none;
    z-index: 2;
}

.section-header .section-marker {
    margin-top: 1rem;
    display: inline-block;
    border-left: 1px dashed var(--accent);
    padding-left: 10px;
}

/* ==========================================================================
   🎀 INFINITE TICKER / MARQUEE TEXT
   ========================================================================== */

.ticker-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background-color: var(--bg-secondary);
    border: none;
    padding: 1.4rem 0;
    user-select: none;
    margin-top: 4rem;
    margin-bottom: 4rem;
    transform: rotate(-1.2deg);
    z-index: 5;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.marquee-right {
    transform: rotate(1.2deg);
    background-color: var(--bg-tertiary);
}

.ticker-container {
    display: flex;
    width: 100%;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-right .ticker-track {
    animation: marquee-reverse 30s linear infinite;
}

.ticker-track span {
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.9;
    padding-right: 2.5rem;
    font-family: var(--font-sans);
    display: inline-block;
}

.ticker-track span::after {
    content: " • ";
    color: var(--accent);
}

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

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

/* ==========================================================================
   📄 PORTFOLIO CAROUSEL (3D PERSPECTIVE CURVED TRACK)
   ========================================================================== */

.work-section {
    padding: 8rem 0;
}

/* Draggable track viewport extending to screen edges */
.slider-viewport {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 4rem 0;
    cursor: grab;
    user-select: none;
}

.slider-viewport:active {
    cursor: grabbing;
}

/* 🌈 DYNAMIC AMBIENT BACKGLOW ORB */
.slider-glow-orb {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 40vw, 450px);
    height: clamp(300px, 40vw, 450px);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08); /* Initial gold glow color */
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cylinder curved track container */
.slider-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    padding: 0 calc(50vw - 225px); /* Centers the active card (cardWidth = 450px) */
    transform-style: preserve-3d;
    perspective: 900px; /* Reduced from 1500px to dramatically intensify focal depth distortion */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1; /* Renders above the ambient light orb */
}

/* Wide slide cards rotating in 3D perspective Cylinder curve */
.slide-card {
    width: 450px;
    flex-shrink: 0;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}

.card-visual-wrapper {
    position: relative;
    height: 380px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 12px 30px rgba(0,0,0,0.65), 0 0 12px rgba(212, 175, 55, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform-style: preserve-3d;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* Background image of the card */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Glare sheet catching light in 3D space */
.slide-card .card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: 2;
    pointer-events: none;
}

/* Glow overlays for hover */
.card-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Apply customized glows */
.p-vesper-crow:hover .card-glow { background: rgba(230, 57, 70, 0.2); opacity: 1; }
.p-medico-elite:hover .card-glow { background: rgba(0, 180, 216, 0.2); opacity: 1; }
.p-lumin-dental:hover .card-glow { background: rgba(112, 224, 0, 0.2); opacity: 1; }
.p-vesper-lux:hover .card-glow { background: rgba(212, 175, 55, 0.2); opacity: 1; }
.p-dona-rosa:hover .card-glow { background: rgba(247, 127, 0, 0.2); opacity: 1; }
.p-vesper-crow-brand:hover .card-glow { background: rgba(255, 255, 255, 0.15); opacity: 1; }

/* Typographic Project Overlay */
.project-overlay {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    pointer-events: none;
    transform: translateZ(30px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-watermark {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.85);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 2.25rem;
    background-color: rgba(10, 10, 9, 0.85);
    transition: var(--transition-smooth);
}

/* View Button Reveal */
.card-view-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.7rem 1.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(30px) translateZ(10px);
    opacity: 0;
    z-index: 10;
    transition: var(--transition-smooth);
    border: 1px solid var(--text-primary);
}

/* HOVER TRIGGERS (Gold Card Glow & Zoom) */
.work-card:hover .card-visual-wrapper {
    border-color: var(--accent);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.55), inset 0 0 20px rgba(212, 175, 55, 0.25);
}

.work-card:hover .card-bg-image {
    transform: scale(1.12);
    opacity: 0.82;
}

.work-card:hover .project-watermark {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(10, 10, 9, 0.85);
    transform: scale(1.03) translateZ(40px);
    text-shadow: 0 0 20px var(--accent-glow);
}

.work-card:hover .card-view-btn {
    transform: translateY(0) translateZ(10px);
    opacity: 1;
}

/* Card Metadata & Titles */
.card-info {
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-project-title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.work-card:hover .card-project-title {
    color: var(--accent);
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.card-project-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 300;
    min-height: 4.5rem; /* Stabilize card details layout */
}

/* 🎛️ GOLDEN NEON CAROUSEL CONTROLS */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    z-index: 10;
    position: relative;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--accent);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.slider-btn:hover {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.05);
}

.slider-indicator {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    min-width: 70px;
    text-align: center;
    font-weight: 500;
}

/* ==========================================================================
   🏢 STUDIO PHILOSOPHY (ABOUT) — SOLID BG WITH STONE-CARD TEXTURES
   ========================================================================== */

.studio-section {
    padding: 9rem 0;
    border-top: none; 
    background-color: transparent;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 6rem;
    align-items: center;
}

.studio-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 2rem;
}

.studio-intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.studio-stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* STAT CARDS AS CAPABILITIES TEXTURED BLOCKS */
.stat-card {
    background-image: linear-gradient(rgba(18, 18, 16, 0.75), rgba(18, 18, 16, 0.85)), url('assets/bg_stone.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 15px 35px rgba(0,0,0,0.65), 0 0 15px rgba(212, 175, 55, 0.08);
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background-image: linear-gradient(rgba(26, 26, 24, 0.8), rgba(26, 26, 24, 0.9)), url('assets/bg_stone.jpg');
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.85), 0 0 25px rgba(212, 175, 55, 0.35);
}

.stat-num {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==========================================================================
   ✉️ CONTACT SECTION — SOLID BG WITH TEXTURED CONTACT CONTAINER
   ========================================================================== */

.contact-section {
    padding: 9rem 0;
    border-top: none;
    background-color: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: stretch;
}

.contact-info-panel {
    background-image: linear-gradient(rgba(18, 18, 16, 0.82), rgba(18, 18, 16, 0.92)), url('assets/bg_stone.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
    padding: 3.2rem 2.6rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.65), 0 0 15px rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.contact-info-panel:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(0,0,0,0.85), 0 0 25px rgba(212, 175, 55, 0.25);
}

.contact-info-header {
    margin-bottom: 2.5rem;
}

.contact-info-header .section-number {
    font-size: 1.1rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-panel-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.contact-panel-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-details-list li {
    border-left: 2px solid rgba(212, 175, 55, 0.35);
    padding-left: 1.1rem;
    transition: var(--transition-fast);
}

.contact-details-list li:hover {
    border-left-color: var(--accent);
}

.detail-text-sm {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
}

.contact-social-row {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-tag {
    font-size: 0.78rem;
    color: var(--accent);
    background: rgba(10, 10, 9, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.social-tag:hover {
    border-color: var(--accent);
    color: #ffffff;
    background: rgba(212, 175, 55, 0.15);
}

.detail-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.35rem;
}

.detail-link {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.detail-link:hover {
    color: var(--accent);
    padding-left: 4px;
}

.detail-text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* SLEEK LUXURIOUS CONTACT PANEL CARD (Matching Studio Textured Style) */
.contact-form-panel {
    background-image: linear-gradient(rgba(18, 18, 16, 0.82), rgba(26, 26, 23, 0.92)), url('assets/bg_stone.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
    padding: 3.2rem 2.8rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 20px rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.contact-form-panel:hover {
    border-color: var(--accent);
    box-shadow: 0 35px 70px rgba(0,0,0,0.7), 0 0 25px rgba(212, 175, 55, 0.25);
}

.contact-form-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.035) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-input {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition-fast);
    margin-top: 1rem;
    cursor: pointer;
}

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

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

.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    background-color: transparent; /* Seamless blend */
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-designation {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

/* ==========================================================================
   🎬 ANIMATIONS & APPEARS
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
}

.app-container.visible .animate-on-load {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delays for hero elements */
#hero-tagline { transition-delay: 0.2s; }
#hero-title { transition-delay: 0.4s; }
#hero-description { transition-delay: 0.6s; }
#hero-actions { transition-delay: 0.8s; }

/* ==========================================================================
   📱 RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
    .app-container {
        padding: 0 2rem;
    }
    
    .studio-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .branding-stamp {
        margin-top: 3rem;
    }
}

/* 📱 TABLET & MOBILE SPECIFIC RESPONSIVE ADJUSTMENTS (max-width: 1100px) */
@media (max-width: 1100px) {
    .main-header {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 5rem !important;
    }

    .hero-section {
        min-height: auto;
        padding-top: 3rem !important;
        padding-bottom: 6rem !important;
    }

    .hero-typography {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 4.5rem !important;
        margin-bottom: 5.5rem !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .giant-svg-text {
        font-size: 80px !important;
        letter-spacing: 5px !important;
    }

    .hero-categories-row {
        position: relative !important;
        z-index: 5;
        margin-top: 4rem !important;
        margin-bottom: 5rem !important;
        width: 100%;
    }

    .hero-categories {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        align-items: center;
        width: 100%;
        max-width: 98%;
        margin: 0 auto;
        padding: 0.5rem 0.5rem;
        background: transparent !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
    
    .cat-btn {
        font-size: 0.72rem;
        padding: 0.45rem 0.85rem;
        letter-spacing: 1px;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .cat-btn:focus, .cat-btn:active {
        outline: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .hero-footer-strip {
        flex-direction: column;
        gap: 2.2rem;
        text-align: center;
        padding: 0 1.5rem;
        margin-top: 4.5rem !important;
        margin-bottom: 2rem !important;
        width: 100%;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 2rem !important;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-footer-strip .actions-col {
        justify-content: center;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.65rem 1.1rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }
}

    .slider-viewport {
        touch-action: pan-y;
    }

    .slider-track {
        gap: 2rem;
        padding: 0 calc(50vw - 160px);
    }

    .slide-card {
        width: 320px;
    }
    
    .card-visual-wrapper {
        height: 320px;
    }
    
    .contact-form-panel {
        padding: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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