/* =========================
   Global Base — Gallery Minimal
========================= */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #111;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================
   Navbar
========================= */

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
}

.logo {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.nav-links a {
    margin-left: 32px;
    font-size: 15px;
    color: #444;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-cta {
    background: #000;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 2px;
    font-size: 14px;
}

/* =========================
   Page Header
========================= */
.header-divider {
    width: 60px;
    height: 1px;
    background: #000;
    margin: 50px auto 0 auto;
}
.page-header {
    margin: 140px auto 120px auto;
    max-width: 720px;
    text-align: center;
}
.page-header h1 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 30px;
}
.page-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
margin: 0 auto;
}
/* =========================
   Makers Grid
========================= */

.makers-grid {
    display: grid;
    gap: 60px 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 120px;
}

.maker-card {
    display: block;
}

.maker-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 32px;
}
.maker-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 6px 0;
}

.maker-location {
    font-size: 14px;
    color: #777;
}

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

.footer {
    text-align: center;
    padding: 80px 0;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #f2f2f2;
}

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

@media (max-width: 1024px) {
    .makers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 24px;
    }

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

    .page-header h1 {
        font-size: 34px;
    }

    .page-header p {
        font-size: 16px;
    }
}
