/* ===== CSS Variables ===== */
:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --surface: #ffffff;
    --text: #000000;
    --text-secondary: #4a4a4a;
    --text-muted: #8a8a8a;
    --accent: #000000;
    --accent-hover: #333333;
    --accent-subtle: rgba(0, 0, 0, 0.06);
    --border: #d4d4d4;
    --border-light: #ebebeb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --radius-sm: 0;
    --radius: 0;
    --radius-lg: 0;
    --max-width: 1200px;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.6rem, 5vw, 5.6rem); }
h2 { font-size: clamp(2.4rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.8rem, 2.5vw, 2.2rem); }

.section-label {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 3rem;
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #000;
    color: #fff;
}
.btn-primary:hover { background: #333; }

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}
.btn-outline:hover { background: #000; color: #fff; }

.btn-arrow::after {
    content: '→';
    font-size: 1.6rem;
    margin-left: 0.4rem;
    transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid #000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7.2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background: #000;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-img {
    width: 3.6rem;
    height: 3.6rem;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000;
}

.main-nav { display: flex; align-items: center; }
.nav-toggle { display: none; background: none; border: none; width: 2.8rem; height: 2rem; cursor: pointer; flex-direction: column; justify-content: space-between; }
.nav-toggle-bar { display: block; width: 100%; height: 2px; background: #000; transition: all 0.2s ease; }

.nav-list { display: flex; gap: 0.4rem; }
.nav-list a {
    display: block;
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.15s ease;
    letter-spacing: 0.02em;
}
.nav-list a:hover, .nav-list a.active { color: #000; }

/* ===== Hero ===== */
.hero {
    padding: 18rem 0 10rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.hero-eyebrow {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    max-width: 100%;
    margin: 0 0 2.4rem;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    max-width: 56rem;
    margin: 0 0 4rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-actions { display: flex; gap: 1.6rem; flex-wrap: wrap; }

/* ===== Section dividers ===== */
.section-divider {
    height: 2px;
    background: #000;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ===== Featured Grid ===== */
.featured-section {
    padding: 10rem 0;
}

.featured-section .section-label { text-align: left; }
.featured-section h2 { margin-bottom: 5rem; }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

/* ===== Project Card ===== */
.project-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.project-card:hover {
    background: #000;
    color: #fff;
}

.project-card:hover .card-body h3,
.project-card:hover .card-body p,
.project-card:hover .card-meta,
.project-card:hover .card-link {
    color: #fff;
}

.project-card:hover .card-image-placeholder {
    filter: grayscale(100%) brightness(0.3);
}

.project-card.featured-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.project-card.featured-card:first-child .card-image {
    height: 100%;
    min-height: 36rem;
}

.card-image {
    position: relative;
    height: 26rem;
    overflow: hidden;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease;
    background: #f0f0f0;
}

.card-placeholder-icon {
    font-family: var(--font-sans);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(0,0,0,0.08);
    letter-spacing: -0.04em;
}

.card-category {
    position: absolute;
    top: 1.6rem; left: 1.6rem;
    padding: 0.4rem 1rem;
    background: #000;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-body { padding: 2.4rem; }

.card-body h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #000;
}

.card-body p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.card-meta {
    display: flex;
    gap: 1.6rem;
    font-size: 1.3rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 1.2rem;
    transition: gap 0.2s ease;
}
.card-link:hover { gap: 1rem; }

/* ===== Page Header ===== */
.page-header {
    padding: 16rem 0 6rem;
    text-align: left;
    max-width: 72rem;
    margin: 0 auto;
}
.page-header h1 { margin-bottom: 1.2rem; }
.page-header p { font-size: 1.8rem; color: var(--text-secondary); font-weight: 400; }

/* ===== Portfolio Page ===== */
.portfolio-filters {
    display: flex;
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--text-muted);
}
.filter-btn:hover { color: #000; border-color: #ccc; }
.filter-btn.active { color: #000; border-color: #000; background: transparent; }

.portfolio-grid {
    columns: 3;
    column-gap: 2.4rem;
    margin-bottom: 5.6rem;
}

.portfolio-grid .project-card {
    break-inside: avoid;
    margin-bottom: 2.4rem;
    display: block;
}
.portfolio-grid .project-card.featured-card:first-child {
    grid-column: auto;
    grid-template-columns: unset;
    display: block;
}
.portfolio-grid .card-image { height: auto; min-height: 22rem; }

/* ===== Project Detail ===== */
.project-hero {
    padding: 14rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.project-hero-image {
    overflow: hidden;
    min-height: 40rem;
    background: #f0f0f0;
}

.project-hero-content .category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: #000;
    margin-bottom: 2rem;
}
.project-hero-content h1 { margin-bottom: 1.6rem; }
.project-hero-content .hero-excerpt { font-size: 1.8rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2.4rem; font-weight: 400; }
.project-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-top: 2.4rem; border-top: 2px solid #000; }
.project-meta-item h4 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.4rem; }
.project-meta-item p, .project-meta-item span { font-size: 1.5rem; font-weight: 500; }

.project-section { padding: 5rem 0; }
.project-section h2 {
    margin-bottom: 2.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 2px solid #000;
}
.project-section p { font-size: 1.6rem; color: var(--text-secondary); line-height: 1.8; }
.project-section p + p { margin-top: 1.6rem; }

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}
.gallery-image {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    border: 2px solid #000;
}
.gallery-image .card-image-placeholder { width: 100%; height: 100%; }

.related-section { padding: 8rem 0; background: var(--bg-alt); border-top: 2px solid #000; }
.related-section h2 { margin-bottom: 4rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }

/* ===== About Page ===== */
.about-hero {
    padding: 14rem 0 6rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: start;
}

.about-portrait {
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 10rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    letter-spacing: -0.06em;
}

.about-content h1 { margin-bottom: 2.4rem; }
.about-content .lead {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    margin-bottom: 2.4rem;
    letter-spacing: -0.02em;
}
.about-content p { font-size: 1.6rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.6rem; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 5rem 0; border: 2px solid #000; }
.stat-item { text-align: center; padding: 3rem 2rem; background: transparent; border-right: 2px solid #000; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-sans); font-size: 3.6rem; font-weight: 800; color: #000; display: block; letter-spacing: -0.03em; }
.stat-label { font-size: 1.2rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.6rem; font-weight: 600; }

.services-section { padding: 8rem 0; background: var(--bg-alt); border-top: 2px solid #000; }
.services-section h2 { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #000; }
.service-card { padding: 3.2rem; background: #fff; border-right: 2px solid #000; border-bottom: 2px solid #000; transition: all 0.2s ease; }
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+4) { border-bottom: none; }
.service-card:hover { background: #000; color: #fff; }
.service-card:hover h3, .service-card:hover p { color: #fff; }
.service-icon { font-size: 2.4rem; margin-bottom: 1.6rem; opacity: 0.3; }
.service-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: #000; }
.service-card p { font-size: 1.4rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== Contact Page ===== */
.contact-section { padding: 2rem 0 8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.form-group label { font-size: 1.2rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select {
    padding: 1.4rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    transition: background 0.15s ease;
    width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    background: #f9f9f9;
}
.form-group textarea { min-height: 16rem; resize: vertical; }

.form-success {
    background: #000;
    border: 2px solid #000;
    color: #fff;
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.form-error {
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.contact-info { display: flex; flex-direction: column; gap: 3.2rem; }
.contact-info h2 { margin-bottom: 0.8rem; }
.contact-info > p { font-size: 1.6rem; color: var(--text-secondary); line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail-item { padding-left: 1.6rem; border-left: 2px solid #000; }
.contact-detail-item h4 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.4rem; }
.contact-detail-item a, .contact-detail-item span { font-size: 1.6rem; color: #000; }
.contact-detail-item a:hover { text-decoration: underline; }

/* ===== Admin ===== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 26rem;
    background: #000;
    color: #fff;
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
}
.admin-sidebar .logo-mark { background: #fff; color: #000; }
.admin-sidebar h3 { color: rgba(255,255,255,0.5); font-family: var(--font-sans); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 3.2rem; margin-bottom: 1.2rem; font-weight: 600; }
.admin-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.admin-nav a {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.15s ease;
    letter-spacing: 0.02em;
}
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
.admin-nav a.logout { color: rgba(255,255,255,0.4); }

.admin-main {
    margin-left: 26rem;
    padding: 3.2rem;
    flex: 1;
    min-height: 100vh;
    background: #fff;
}

.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3.2rem; padding-bottom: 2rem; border-bottom: 2px solid #000; }
.admin-header h1 { font-size: 2.6rem; }

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.login-card {
    width: 100%;
    max-width: 42rem;
    padding: 4rem;
    background: #fff;
    border: 2px solid #000;
}

.login-card h1 { text-align: center; margin-bottom: 0.4rem; font-size: 2.8rem; }
.login-card .login-subtitle { text-align: center; color: var(--text-muted); font-size: 1.4rem; margin-bottom: 3.2rem; }

.data-table { width: 100%; background: #fff; overflow: hidden; border: 2px solid #000; }
.data-table th { text-align: left; padding: 1.4rem 1.6rem; font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); background: var(--bg-alt); border-bottom: 2px solid #000; }
.data-table td { padding: 1.4rem 1.6rem; font-size: 1.4rem; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table .badge { display: inline-block; padding: 0.3rem 1rem; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border: 2px solid #000; }
.data-table .badge-read { background: #fff; color: #000; }
.data-table .badge-unread { background: #000; color: #fff; }
.data-table td a { color: #000; font-weight: 600; text-decoration: underline; }
.data-table td a:hover { opacity: 0.6; }

.admin-form { max-width: 64rem; background: #fff; padding: 3.2rem; border: 2px solid #000; }

.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.4rem; }
.toolbar p { font-size: 1.4rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

.inline-actions { display: flex; gap: 0.8rem; }
.inline-actions a, .inline-actions button {
    padding: 0.4rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.15s ease;
}
.inline-actions a:hover, .inline-actions button:hover { background: #000; color: #fff; }
.inline-actions .btn-danger { color: #000; border-color: #000; }
.inline-actions .btn-danger:hover { background: #000; color: #fff; }

.message-card { background: #fff; padding: 3.2rem; border: 2px solid #000; }
.message-card h2 { margin-bottom: 0.8rem; }
.message-meta { display: flex; gap: 2rem; font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.4rem; padding-bottom: 2rem; border-bottom: 2px solid #000; font-weight: 500; }
.message-body { font-size: 1.6rem; line-height: 1.8; color: #000; white-space: pre-wrap; }

.empty-state { text-align: center; padding: 8rem 2rem; }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1.6rem; opacity: 0.3; }
.empty-state h3 { margin-bottom: 0.8rem; }
.empty-state p { font-size: 1.5rem; color: var(--text-muted); }

/* ===== Footer ===== */
.site-footer { background: #000; color: rgba(255,255,255,0.6); padding: 6rem 0 0; margin-top: 0; border-top: none; }
.footer-inner { display: flex; justify-content: space-between; gap: 6rem; margin-bottom: 4rem; }
.footer-logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 3.6rem; height: 3.6rem; background: rgba(255,255,255,0.15); color: #fff; font-family: var(--font-sans); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1.6rem; }
.footer-tagline { font-size: 1.5rem; }
.footer-links { display: flex; gap: 6rem; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 1.5rem; transition: opacity 0.15s ease; }
.footer-col a:hover { opacity: 0.7; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 2rem 0;
    font-size: 1.3rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 2rem 0; font-size: 1.2rem; color: var(--text-muted); display: flex; gap: 0.8rem; align-items: center; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: #000; }
.breadcrumb .sep { color: var(--border); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero { padding: 14rem 0 6rem; }
    .featured-grid { grid-template-columns: 1fr; }
    .project-card.featured-card:first-child { grid-template-columns: 1fr; }
    .project-card.featured-card:first-child .card-image { min-height: 24rem; }
    .portfolio-grid { columns: 2; }
    .project-hero { grid-template-columns: 1fr; gap: 3rem; }
    .project-hero-image { min-height: 28rem; }
    .project-gallery { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .about-hero { grid-template-columns: 1fr; gap: 4rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 2px solid #000; }
    .service-card:nth-child(n+4) { border-bottom: 2px solid #000; }
    .service-card:last-child { border-bottom: none; }
    .contact-section { grid-template-columns: 1fr; gap: 4rem; }
    .footer-inner { flex-direction: column; gap: 3rem; }
}

@media (max-width: 600px) {
    .nav-list { display: none; position: absolute; top: 7.2rem; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1.6rem; border-bottom: 2px solid #000; box-shadow: var(--shadow-md); }
    .nav-list.open { display: flex; }
    .nav-toggle { display: flex; }
    .portfolio-grid { columns: 1; }
    .project-gallery { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 2px solid #000; }
    .stat-item:last-child { border-bottom: none; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .project-meta-grid { grid-template-columns: 1fr; }
}
