/* ============================================================
   ROOT & TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #0a0a0f;
    --bg2:        #0f0f18;
    --surface:    #141420;
    --surface2:   #1c1c2e;
    --border:     rgba(255,255,255,0.07);
    --gold:       #c9a84c;
    --gold2:      #e8c97a;
    --gold-dim:   rgba(201,168,76,0.12);
    --white:      #f0ede6;
    --muted:      rgba(240,237,230,0.45);
    --red:        #e05a5a;
    --green:      #4caf7d;
    --blue:       #5a8ae0;
    --radius:     16px;
    --radius-sm:  8px;
    --shadow:     0 24px 64px rgba(0,0,0,0.5);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,15,0.95) 0%, transparent 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(10,10,15,0.97);
    padding: 14px 60px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-lang {
    background: var(--gold-dim);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.nav-lang:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

/* Geometric lines */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.04;
}
.hero-lines svg { width: 100%; height: 100%; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
    display: block;
}

.hero-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    white-space: pre-line;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0f;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
    box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(201,168,76,0.5);
}
.hero-cta svg { transition: transform 0.3s; }

/* Stats bar */
.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Scroll indicator */

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}
.section-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects-section {
    padding: 100px 60px;
    position: relative;
}

/* Filter bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.04em;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

/* Card */
.project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    transform: translateY(0);
}
.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.project-card.hidden { display: none; }

/* Card image area */
.card-image {
    position: relative;
    height: 311px;
    background: var(--surface2);
    overflow: hidden;
}
.card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    filter: brightness(0.85);
}
.project-card:hover .card-image img { transform: scale(1.06); }

/* Placeholder for missing images */
.card-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface2) 0%, #1f1f35 100%);
}
.card-image-placeholder svg { opacity: 0.15; }

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.7) 0%, transparent 60%);
}

/* Category pill */


/* Arrow icon */
.project-card:hover .card-arrow {
    opacity: 1;
    transform: scale(1);
}
.card-arrow svg { color: var(--bg); }

/* Card body */
.card-body { padding: 24px; }
.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.card-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tech-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: var(--surface2);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

/* Status badges */
.status-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}
.status-badge.live     { background: rgba(76,175,125,0.15); color: var(--green); border: 1px solid rgba(76,175,125,0.3); }
.status-badge.archived { background: rgba(201,168,76,0.12); color: var(--gold);  border: 1px solid rgba(201,168,76,0.3); }
.status-badge.internal { background: rgba(90,138,224,0.12); color: var(--blue);  border: 1px solid rgba(90,138,224,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav-links { display: none; }
    .hero { padding: 100px 20px 80px; }
    .hero-stats { left: 20px; right: 20px; bottom: 40px; gap: 28px; }
    .scroll-indicator { display: none; }
    .projects-section { padding: 60px 20px; }
    .projects-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 30px 20px; }
}

/* Page Project */
/* ============================================================
   ROOT & BASE
   ============================================================ */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.4;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav-logo {
    font-size: 22px; font-weight: 700;
    color: var(--white); text-decoration: none;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
}
.nav-logo-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: inline-block; }

.nav-back {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--muted); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color 0.2s;
    padding: 8px 0;
}
.nav-back:hover { color: var(--white); }
.nav-back svg { transition: transform 0.3s; }

.nav-lang {
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold); padding: 7px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: var(--transition);
}
.nav-lang:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============================================================
   HERO BANNER
   ============================================================ */
.project-hero {
    min-height: 60vh;
    padding-top: 80px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-cover {
    position: absolute; inset: 0;
}
.hero-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}
.hero-cover-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0f0f20 0%, #1a1a35 50%, #0f0f20 100%);
    display: flex; align-items: center; justify-content: center;
}
.hero-cover-placeholder svg { opacity: 0.05; }

.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        var(--bg) 0%,
        rgba(10,10,15,0.6) 50%,
        rgba(10,10,15,0.2) 100%
    );
}

/* Grid lines overlay */
.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative; z-index: 1;
    padding: 60px 60px 80px;
    width: 100%;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-overline {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.hero-overline::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }

.hero-title {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white); margin-bottom: 20px;
    max-width: 800px;
}

.hero-meta {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.hero-meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--muted);
}
.hero-meta-item svg { opacity: 0.5; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.project-body {
    padding: 0 60px 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ============================================================
   OVERVIEW
   ============================================================ */
.content-section { margin-bottom: 64px; }
.content-label {
    font-size: 28px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}


.overview-text {
    font-size: 17px; color: rgba(240,237,230,0.75);
    line-height: 1.9; font-weight: 300;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 16/10;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 21/9; }
.gallery-item:hover { border-color: rgba(201,168,76,0.3); transform: scale(1.01); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--surface2) 0%, #1f1f35 100%);
}
.gallery-placeholder svg { opacity: 0.12; }

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,15,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { position: relative; }

.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.sidebar-section { margin-bottom: 28px; }
.sidebar-section:last-child { margin-bottom: 0; }

.sidebar-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
}
.sidebar-value {
    font-size: 15px; color: var(--white); font-weight: 500;
}

.sidebar-divider {
    height: 1px; background: var(--border);
    margin: 24px 0;
}

.tech-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-item {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--gold2);
    font-size: 12px; font-weight: 600;
    padding: 5px 14px; border-radius: 6px;
    letter-spacing: 0.04em;
}

.status-badge {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px;
}
.status-badge.live     { background: rgba(76,175,125,0.15); color: var(--green); border: 1px solid rgba(76,175,125,0.3); }
.status-badge.archived { background: rgba(201,168,76,0.12); color: var(--gold);  border: 1px solid rgba(201,168,76,0.3); }
.status-badge.internal { background: rgba(90,138,224,0.12); color: var(--blue);  border: 1px solid rgba(90,138,224,0.3); }

.visit-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg);
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 28px;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(201,168,76,0.2);
}
.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}

/* ============================================================
   PREV / NEXT NAVIGATION
   ============================================================ */
.project-nav {
    padding: 0 60px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.nav-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.nav-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.nav-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.nav-card:hover::before { opacity: 1; }
.nav-card-dir {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); position: relative; z-index: 1;
}
.nav-card-title {
    font-size: 16px; font-weight: 700;
    color: var(--white); position: relative; z-index: 1;
    line-height: 1.3;
}
.nav-card-cat {
    font-size: 12px; color: var(--muted);
    position: relative; z-index: 1;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
    position: relative;
    max-width: 1100px;
    max-height: 80vh;
    width: 100%;
    overflow-y: scroll;
}
.lightbox img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .nav { padding: 16px 20px; }
    .hero-content { padding: 40px 20px 60px; }
    .project-body { grid-template-columns: 1fr; padding: 0 20px 60px; }
    .sidebar-card { position: static; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; }
    .project-nav { grid-template-columns: 1fr; padding: 0 20px 60px; }
}