.layout-container {
    flex-direction: column;
}

.sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--line);
}

.sidebar .nav-vertical {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c200);
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--line);
    gap: 10px;
    margin-top: 0;
}

.sidebar .nav-vertical.active {
    display: grid;
}

.hamburger {
    display: block !important;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--g700);
    line-height: 1;
}

.main-content {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    margin-top: 72px;
}

.hero,
.about-grid,
.contact-grid,
.tiles {
    grid-template-columns: 1fr !important;
}

.hero {
    gap: 20px;
}

.hero-main {
    border-radius: 16px;
    padding: 16px;
}

.box {
    gap: 20px;
}

.lead {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
}

.tile {
    padding: 16px;
}

.project-actions {
    opacity: 1;
    transform: none;
    padding-top: 10px;
}

.pill {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    font-size: 13px;
}

.about-image img,
.image-tall {
    aspect-ratio: 4 / 5;
}

.footer-inner {
    justify-content: center;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-logo {
    display: block !important;
    font-family: "Assistant", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--g700);
}

@media screen and (max-width: 768px) {
    .top-strip {
        display: none;
    }

    .page {
        padding: 12px 0 20px;
    }
}