/* =========================================
   VARIABLES & THEME CONFIGURATION
   ========================================= */
:root {
    /* Colors */
    --clr-bg: #0d0c0b;
    --clr-bg-alt: #161513;
    --clr-surface: rgba(26, 24, 22, 0.6);
    
    --clr-primary: #f05a22; /* Warm fire orange */
    --clr-primary-light: #ff7640;
    --clr-primary-dark: #cc4513;
    --clr-secondary: #e6b981; /* Warm ash/sand */
    
    --clr-text: #f5f4f0;
    --clr-text-muted: #a3a19d;
    
    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: 16px;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;
    
    /* Layout */
    --container-max: 1280px;
    --container-padding: 2rem;
    
    /* Transitions */
    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--clr-text);
    font-weight: 700;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
    max-width: 600px;
}

.accent {
    color: var(--clr-primary);
}

.accent-gradient {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* =========================================
   LAYOUT & CONTAINERS
   ========================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.section {
    padding: var(--space-xxl) 0;
    position: relative;
    z-index: 10;
}

.dark-section {
    background-color: var(--clr-bg-alt);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* =========================================
   BACKGROUND EFFECTS (GLOW)
   ========================================= */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--clr-primary);
}

.glow-2 {
    top: 30%;
    right: -20%;
    width: 40vw;
    height: 40vw;
    background: var(--clr-secondary);
}

/* =========================================
   COMPONENTS
   ========================================= */
   
/* Glass Card */
.glass-card {
    background: var(--clr-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.hover-lift {
    transition: transform var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 90, 34, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 99px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--trans-fast);
    border: none;
    outline: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(240, 90, 34, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(240, 90, 34, 0.6);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-primary) 100%);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--clr-text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(240, 90, 34, 0.1);
    border: 1px solid rgba(240, 90, 34, 0.2);
    color: var(--clr-primary-light);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: padding var(--trans-fast), background var(--trans-fast), backdrop-filter var(--trans-fast);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(13, 12, 11, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 65%;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

@media (min-width: 480px) {
    .logo-img {
        height: 50px;
    }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.desktop-nav {
    display: none;
}

@media (min-width: 900px) {
    .desktop-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width var(--trans-fast);
}

.nav-link:hover {
    color: var(--clr-text);
}

.nav-link:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--clr-text);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    border: 1px solid var(--glass-border);
    transition: all var(--trans-fast);
}

.phone-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary-light);
}

.phone-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 900px) {
    .phone-btn {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Above overlay */
    position: relative;
}

@media (min-width: 900px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-text);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
    transform-origin: left center;
}

/* Mobile Menu Active State */
.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    width: 24px;
}

.menu-open .mobile-menu-toggle span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    width: 24px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 12, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color var(--trans-fast);
    display: inline-block;
}

.mobile-nav-link:hover {
    color: var(--clr-primary);
}

.menu-open .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.menu-open .mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
.menu-open .mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 0.15s; }
.menu-open .mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 0.2s; }
.menu-open .mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 0.25s; }
.menu-open .mobile-nav-list li:nth-child(5) .mobile-nav-link { transition-delay: 0.3s; }

.mobile-contact {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.menu-open .mobile-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-contact span {
    color: var(--clr-text);
    font-weight: 600;
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind content but above background */
    pointer-events: none;
    opacity: 0.8;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(220, 107, 25, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3; /* Above canvas and before pseudo-element */
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    font-size: clamp(1.75rem, 8vw, 4.5rem);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    word-break: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-card {
    border-radius: 32px;
    padding: 1rem;
    position: relative;
}

.hero-img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: rgba(26, 24, 22, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.badge-1 {
    bottom: 2rem;
    left: -2rem;
}

@media (max-width: 768px) {
    .badge-1 {
        left: 1rem;
        bottom: -1rem;
    }
}

.badge-icon {
    font-size: 1.5rem;
}

.floating-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    line-height: 1.2;
}

.floating-badge span {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(240, 90, 34, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform var(--trans-fast), background var(--trans-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(240, 90, 34, 0.2);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
}

/* =========================================
   MASTERS SECTION
   ========================================= */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.master-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    text-align: center;
    align-items: center;
}

.master-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-surface), #33251a);
    border: 2px solid var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(240, 90, 34, 0.2);
}

.master-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.master-role {
    color: var(--clr-primary-light);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.master-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.master-phone {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    color: var(--clr-text);
    font-weight: 600;
    font-family: var(--font-display);
    transition: background var(--trans-fast);
}

.master-phone:hover {
    background: var(--clr-primary);
    color: white;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    aspect-ratio: 4/5;
    overflow: hidden;
    padding: 0;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
}

.portfolio-overlay span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
    transform: translateY(10px);
    transition: transform var(--trans-normal);
}

.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* =========================================
   CONSULTATION & PRICING
   ========================================= */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
    }
}

.info-block {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(240, 90, 34, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
}

.contact-highlight {
    background: rgba(240, 90, 34, 0.1);
    border: 1px solid rgba(240, 90, 34, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-highlight span {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

.contact-highlight strong {
    color: var(--clr-primary-light);
    font-size: 1.125rem;
    font-family: var(--font-display);
}

.mt-4 {
    margin-top: auto; /* Push buttons down if needed */
}

/* Banners */
.banners-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .banners-container {
        grid-template-columns: 1fr 1fr;
    }
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

@media (max-width: 640px) {
    .banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.banner-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.banner-content p {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

/* =========================================
   VIDEOS SECTION
   ========================================= */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
}

/* =========================================
   ARTICLES SECTION
   ========================================= */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.article-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(13, 12, 11, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    margin-bottom: 1rem;
}

.article-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--clr-text);
    text-decoration: none;
    transition: color var(--trans-fast);
}

.article-card:hover .article-title a {
    color: var(--clr-primary);
}

.article-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-link {
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    align-self: flex-start;
    transition: color var(--trans-fast);
}

.article-link:hover {
    color: var(--clr-primary-light);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 5rem 0 2rem;
    background-color: #050404;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.brand-col .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--trans-fast);
}

.social-btn:hover {
    background: var(--clr-primary);
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    transition: color var(--trans-fast), padding-left var(--trans-fast);
}

.footer-links a:hover {
    color: var(--clr-primary-light);
    padding-left: 5px;
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-link:hover {
    color: var(--clr-primary);
}

.contact-info {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* =========================================
   UTILITIES & ANIMATIONS
   ========================================= */

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}
