/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #808080;
    --gray-dark: #333333;
    --spencer-blue: #003366;
    --spencer-navy: #1A2B4C;
    --spencer-blue-med: #4A70A8;
    --spencer-blue-light: #6B90C7;
    --larkin-yellow: #FFD700;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    opacity: 0.6;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--spacing-md);
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(107, 144, 199, 0.1));
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   WORK SECTION
   ============================================ */
.work-section {
    background: var(--gray-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.brand-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.brand-card-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.brand-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spencer Preview */
.brand-spencer {
    background: linear-gradient(135deg, var(--spencer-navy), var(--spencer-blue-light));
}

.hex-pattern {
    width: 200px;
    height: 200px;
    position: relative;
}

.hex {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.hex:nth-child(2) { top: 50px; left: 0; }
.hex:nth-child(3) { top: 50px; right: 0; }
.hex:nth-child(4) { top: 100px; left: 30px; }
.hex:nth-child(5) { top: 100px; right: 30px; }

/* CBD Preview */
.brand-cbd {
    background: var(--white);
}

.cbd-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.cbd-text {
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cbd-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 12px solid var(--black);
    border-radius: 50%;
    border-top: 4px dashed var(--black);
    border-bottom: 4px dashed var(--black);
    z-index: -1;
}

.disco-text {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    -webkit-text-stroke: 3px var(--black);
    color: transparent;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--black);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star:nth-child(1) { top: -20px; left: 20px; }
.star:nth-child(2) { top: -20px; right: 20px; }
.star:nth-child(3) { bottom: 10px; left: -10px; }
.star:nth-child(4) { bottom: 10px; right: -10px; }

/* Larkin Preview */
.brand-larkin {
    background: linear-gradient(135deg, var(--larkin-yellow), #FFA500);
}

.yellow-bar {
    width: 100%;
    height: 100px;
    background: var(--black);
    transform: rotate(-45deg);
}

.brand-card-content {
    padding: var(--spacing-md);
}

.brand-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.brand-card-content p {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-sm);
}

.brand-tag {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 500;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--gray-dark);
}

.about-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 0.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

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

.stats-grid.stats-two .stat-number {
    font-size: 4.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--gray-medium);
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--gray-light);
    text-align: center;
}

.contact-email {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: block;
    transition: var(--transition);
}

.contact-email:hover {
    opacity: 0.6;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-item {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-item:hover {
    opacity: 0.6;
}

/* ============================================
   BRAND PAGES
   ============================================ */
.brand-page {
    padding-top: 80px;
}

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

.brand-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.brand-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--gray-dark);
    font-weight: 400;
}

.brand-hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Spencer Stuart Hero */
.spencer-hero {
    background: linear-gradient(135deg, var(--spencer-navy), var(--spencer-blue-med));
    color: var(--white);
}

.spencer-hero .brand-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.spencer-pattern-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.hex-grid {
    position: relative;
    width: 400px;
    height: 400px;
}

.hex-grid .hex {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
}

/* CBD Hero */
.cbd-hero {
    background: var(--white);
}

.cbd-logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cbd-circle {
    position: relative;
}

.cbd-text-large {
    font-size: 10rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cbd-text-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 20px solid var(--black);
    border-radius: 50%;
    border-top: 6px dashed var(--black);
    border-bottom: 6px dashed var(--black);
    z-index: -1;
}

.cbd-diagonal-lines {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 60px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        var(--black) 10px,
        var(--black) 12px
    );
    opacity: 0.3;
}

.disco-text-large {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 16px;
    -webkit-text-stroke: 5px var(--black);
    color: transparent;
}

.stars-large {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star-large {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--black);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-large:nth-child(1) { top: -40px; left: 30px; }
.star-large:nth-child(2) { top: -40px; right: 30px; }
.star-large:nth-child(3) { bottom: 20px; left: -20px; }
.star-large:nth-child(4) { bottom: 20px; right: -20px; }

/* Larkin Hero */
.larkin-hero {
    background: linear-gradient(135deg, var(--larkin-yellow), #FFA500);
    color: var(--black);
}

.larkin-pattern-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.yellow-banner {
    font-size: 8rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 20px;
    color: rgba(0, 0, 0, 0.2);
}

/* ============================================
   BRAND SECTIONS
   ============================================ */
.brand-overview,
.typography-section,
.color-section,
.features-section,
.logo-breakdown {
    padding: var(--spacing-xl) 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.overview-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-md);
}

.project-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.project-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    opacity: 0.6;
}

.overview-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.detail-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ============================================
   TYPOGRAPHY SECTION
   ============================================ */
.typography-showcase {
    display: grid;
    gap: var(--spacing-lg);
}

.type-sample {
    background: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: 20px;
}

.type-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.type-display {
    margin-bottom: var(--spacing-md);
}

.type-large {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.type-medium {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.type-regular {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
}

.type-small {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.type-weights {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.type-weights span {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--white);
    border-radius: 8px;
}

/* ============================================
   COLOR SECTION
   ============================================ */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.color-item {
    text-align: center;
}

.color-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.color-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.color-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.color-hex {
    font-family: 'Courier Prime', monospace;
    font-size: 0.875rem;
    color: var(--gray-medium);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ============================================
   LOGO BREAKDOWN
   ============================================ */
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.breakdown-item {
    text-align: center;
}

.breakdown-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.breakdown-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.breakdown-item p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ============================================
   BRAND FOOTER
   ============================================ */
.brand-footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--gray-light);
}

.back-link {
    font-size: 1.125rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.back-link:hover {
    opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1.0s;
}

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

/* ============================================
   PORTFOLIO CAROUSEL
   ============================================ */
.portfolio-carousel-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.portfolio-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 800px;
}

.slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-medium);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--black);
    width: 32px;
    border-radius: 6px;
}

/* Laptop Widget */
.project-links-widget {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.laptop-frame {
    max-width: 800px;
    width: 100%;
}

.laptop-screen {
    background: var(--gray-dark);
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.laptop-screen::after {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--gray-dark), transparent);
    border-radius: 0 0 8px 8px;
}

.screen-content {
    background: var(--white);
    border-radius: 6px;
    padding: var(--spacing-lg);
    min-height: 300px;
}

.screen-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.project-link-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
    border: 2px solid transparent;
}

.project-link-item:hover {
    background: var(--white);
    border-color: var(--black);
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cbd-logo-large {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .nav-menu {
        gap: var(--spacing-sm);
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .stats-grid.stats-two .stat-number {
        font-size: 3.5rem;
    }
}

