/* ==========================================
   CSS Variables & Base Styles
   ========================================== */

:root {
    /* Colors - Softer dark theme with color diversity */
    --bg-primary: #0f0f12;
    --bg-secondary: #141418;
    --bg-tertiary: #1e1e24;
    --bg-card: #1a1a20;

    --text-primary: #ffffff;
    --text-secondary: #b4b4bd;
    --text-muted: #8585914;

    --accent-primary: #8b5cf6;
    --accent-secondary: #a78bfa;
    --accent-glow: rgba(139, 92, 246, 0.4);
    --accent-glow-strong: rgba(139, 92, 246, 0.6);

    /* Service accent colors */
    --accent-pink: #ec4899;
    --accent-yellow: #f59e0b;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --accent-red: #ef4444;

    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    --gradient-footer: linear-gradient(180deg, var(--bg-primary) 0%, rgba(139, 92, 246, 0.15) 100%);
    --gradient-about: var(--bg-secondary);
    --gradient-projects: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(59, 130, 246, 0.06) 100%);

    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.18);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ==========================================
   Reset & Base
   ========================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Utilities
   ========================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-secondary);
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--text-primary) !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px var(--accent-glow);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-greeting {
    color: var(--accent-secondary);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
}

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

.about {
    padding: var(--section-padding);
    background: var(--gradient-about);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.about-lead {
    font-size: 1.5rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    line-height: 1.4;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.stat-label {
    font-weight: 500;
    color: var(--text-primary);
}

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

.services {
    padding: var(--section-padding);
}

/* Bento Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Bento card sizing */
.service-card.service-automation {
    grid-column: span 2;
    grid-row: span 1;
}

.service-card.service-video {
    grid-column: span 1;
    grid-row: span 1;
}

.service-card.service-podcast {
    grid-column: span 1;
    grid-row: span 1;
}

.service-card.service-training {
    grid-column: span 1;
    grid-row: span 1;
}

.service-card.service-social {
    grid-column: span 2;
    grid-row: span 1;
}

.service-card.service-design {
    grid-column: span 1;
    grid-row: span 1;
}

.service-card {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.service-card:hover {
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Colored borders matching each card's accent */
.service-automation { border-color: rgba(139, 92, 246, 0.3); }
.service-automation:hover { border-color: rgba(139, 92, 246, 0.6); }

.service-video { border-color: rgba(236, 72, 153, 0.3); }
.service-video:hover { border-color: rgba(236, 72, 153, 0.6); box-shadow: 0 0 30px rgba(236, 72, 153, 0.3); }

.service-podcast { border-color: rgba(245, 158, 11, 0.3); }
.service-podcast:hover { border-color: rgba(245, 158, 11, 0.6); box-shadow: 0 0 30px rgba(245, 158, 11, 0.3); }

.service-training { border-color: rgba(16, 185, 129, 0.3); }
.service-training:hover { border-color: rgba(16, 185, 129, 0.6); box-shadow: 0 0 30px rgba(16, 185, 129, 0.3); }

.service-social { border-color: rgba(59, 130, 246, 0.3); }
.service-social:hover { border-color: rgba(59, 130, 246, 0.6); box-shadow: 0 0 30px rgba(59, 130, 246, 0.3); }

.service-design { border-color: rgba(239, 68, 68, 0.3); }
.service-design:hover { border-color: rgba(239, 68, 68, 0.6); box-shadow: 0 0 30px rgba(239, 68, 68, 0.3); }

/* Colored accent bar at top of each card */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-primary);
}

.service-automation::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.service-video::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.service-podcast::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-training::before { background: linear-gradient(90deg, #10b981, #34d399); }
.service-social::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.service-design::before { background: linear-gradient(90deg, #ef4444, #f87171); }

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-automation .service-icon { color: #a78bfa; }
.service-video .service-icon { color: #f472b6; }
.service-podcast .service-icon { color: #fbbf24; }
.service-training .service-icon { color: #34d399; }
.service-social .service-icon { color: #60a5fa; }
.service-design .service-icon { color: #f87171; }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ==========================================
   Projects Section - Horizontal Folder Carousel
   ========================================== */

.projects {
    padding: 60px 0;
    background: var(--gradient-projects);
    overflow: hidden;
}

.projects .section-title {
    margin-bottom: 8px;
    font-size: 2rem;
}

.subtitle-highlight {
    text-transform: capitalize;
}

.projects .section-subtitle {
    margin-bottom: 40px;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-stack {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.project-card {
    position: absolute;
    width: 500px;
    height: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    /* Folder tab aesthetic */
    border-radius: 12px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Hover state with purple glow - no transparency */
.project-card[data-position="0"]:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(139, 92, 246, 0.2);
}

/* Apply border highlight to folder tab on hover - no glow to prevent leak */
.project-card[data-position="0"]:hover::before {
    border-color: var(--accent-primary);
}

/* Click pulse animation */
.project-card.clicked {
    animation: cardPulse 0.4s ease-out;
}

@keyframes cardPulse {
    0% { box-shadow: 0 0 0 0 var(--accent-glow-strong); }
    50% { box-shadow: 0 0 60px 20px var(--accent-glow); }
    100% { box-shadow: 0 0 40px var(--accent-glow); }
}

/* Folder tab */
.project-card::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 20px;
    width: 140px;
    height: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}


/* Cover the seam between tab and card */
.project-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 21px;
    width: 138px;
    height: 4px;
    background: var(--bg-card);
    z-index: 5;
}


/* Radial carousel - Ferris wheel viewed from above */
/* Front card - center and fully visible */
.project-card[data-position="0"] {
    z-index: 10;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
}

/* Card rotating to the right (next) */
.project-card[data-position="1"] {
    z-index: 5;
    transform: translateX(280px) translateZ(-180px) rotateY(-25deg) scale(0.85);
    opacity: 0.6;
}

/* Card further right (2 positions ahead) */
.project-card[data-position="2"] {
    z-index: 2;
    transform: translateX(380px) translateZ(-350px) rotateY(-45deg) scale(0.7);
    opacity: 0.3;
}

/* Card at the back */
.project-card[data-position="3"] {
    z-index: 1;
    transform: translateX(300px) translateZ(-450px) rotateY(-60deg) scale(0.6);
    opacity: 0.15;
}

/* Card rotating from the left (previous/viewed) */
.project-card[data-position="viewed"] {
    z-index: 5;
    transform: translateX(-280px) translateZ(-180px) rotateY(25deg) scale(0.85);
    opacity: 0.6;
}

/* Hidden cards */
.project-card[data-position="hidden"] {
    z-index: 0;
    transform: translateX(-300px) translateZ(-450px) rotateY(60deg) scale(0.6);
    opacity: 0;
    pointer-events: none;
}

.project-content {
    padding: 40px 44px 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
    width: fit-content;
}

.project-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    flex: 1;
}

.project-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.project-link:hover {
    color: var(--accent-secondary);
}

/* Project Result Metrics */
.project-result {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot:hover {
    background: var(--text-muted);
}

.carousel-dot.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

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

.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 400px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    text-align: left;
}

.contact-link:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-weight: 500;
    color: var(--text-primary);
}

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

.footer {
    padding: 60px 0 40px;
    background: var(--gradient-footer);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

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

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1;
        min-width: 150px;
    }

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

    .carousel-stack {
        height: 420px;
        perspective: 1000px;
    }

    .project-card {
        width: 400px;
        height: 320px;
    }

    .project-card[data-position="1"] {
        transform: translateX(220px) translateZ(-150px) rotateY(-20deg) scale(0.8);
    }

    .project-card[data-position="2"] {
        transform: translateX(300px) translateZ(-280px) rotateY(-35deg) scale(0.65);
        opacity: 0.25;
    }

    .project-card[data-position="viewed"] {
        transform: translateX(-220px) translateZ(-150px) rotateY(20deg) scale(0.8);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--transition-medium);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 20px var(--container-padding);
        font-size: 1.25rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-cta {
        margin: 20px var(--container-padding);
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .carousel-stack {
        height: 380px;
        perspective: 800px;
    }

    .project-card {
        width: 320px;
        height: 300px;
    }

    .project-content {
        padding: 28px 32px;
    }

    .project-content h3 {
        font-size: 1.35rem;
    }

    /* Simplified radial for tablet - less dramatic */
    .project-card[data-position="1"] {
        transform: translateX(180px) translateZ(-120px) rotateY(-15deg) scale(0.75);
        opacity: 0.5;
    }

    .project-card[data-position="2"],
    .project-card[data-position="3"] {
        transform: translateX(220px) translateZ(-200px) rotateY(-25deg) scale(0.6);
        opacity: 0.2;
    }

    .project-card[data-position="viewed"] {
        transform: translateX(-180px) translateZ(-120px) rotateY(15deg) scale(0.75);
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
    }

    .carousel-stack {
        height: 360px;
    }

    .project-card {
        width: 280px;
        height: 280px;
    }

    .project-content {
        padding: 24px;
    }

    .project-content h3 {
        font-size: 1.2rem;
    }

    .project-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .project-card[data-position="1"],
    .project-card[data-position="2"],
    .project-card[data-position="3"],
    .project-card[data-position="viewed"] {
        opacity: 0;
    }

    .stat {
        width: 100%;
    }
}

/* ==========================================
   Accessibility - Skip Link
   ========================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.skip-link:focus {
    top: 10px;
    left: 10px;
}

/* ==========================================
   Focus States for Accessibility
   ========================================== */

.btn:focus-visible,
.nav-menu a:focus-visible,
.nav-logo:focus-visible,
.contact-link:focus-visible,
.service-card:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ==========================================
   Print Stylesheet
   ========================================== */

@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .navbar,
    .nav-toggle,
    .hero-image-glow,
    .skip-link {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        max-width: 200px;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }

    a[href^="#"]::after,
    a[href^="javascript"]::after {
        content: "";
    }

    .section-title {
        background: none;
        -webkit-text-fill-color: #000;
        color: #000;
    }

    .services-grid,
    .about-content,
    .contact-grid {
        display: block;
    }

    .service-card {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        page-break-inside: avoid;
    }
}
