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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f0eb;
    color: #1a1a1a;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 32px;
    gap: 24px;
}

/* --- PROFILE --- */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 30%;
    padding: 4px;
    background: linear-gradient(135deg, #005bbb 0%, #005bbb 50%, #ffd500 50%, #ffd500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 28%;
    object-fit: cover;
    background: #892129;
    padding: 16px;
    border: 3px solid #f5f0eb;
}

.name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
}

.bio {
    font-size: 14px;
    color: #666;
}

/* --- MENU ROW --- */
.menu-row {
    display: flex;
    gap: 12px;
}

.menu-row .link {
    flex: 1;
}

.menu-row-two .link {
    padding: 16px 12px;
    font-size: 14px;
}

/* --- LINKS --- */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
    cursor: pointer;
}

.link:active { transform: scale(0.97); }

.link-filled {
    background: #892129;
    color: #fff;
    box-shadow: 0 2px 8px rgba(137, 33, 41, 0.25);
}

.link-filled:hover {
    box-shadow: 0 4px 16px rgba(137, 33, 41, 0.4);
    opacity: 0.92;
}

.link-outline {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #e0dbd5;
}

.link-outline:hover {
    background: #faf7f4;
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --- SOCIALS --- */
.socials {
    display: flex;
    gap: 12px;
    width: 100%;
}

.social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
    cursor: pointer;
}

.social:active { transform: scale(0.97); }

.social:hover {
    opacity: 0.88;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-facebook {
    background: linear-gradient(135deg, #0064e0, #1877f2, #4599ff);
}

/* --- FOOTER --- */
.footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.footer-hours {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.6;
}

.footer-address {
    font-size: 14px;
    color: #1a1a1a;
    margin-top: 8px;
}

.footer-map {
    font-size: 14px;
    color: #892129;
    text-underline-offset: 2px;
}

.footer-map:hover {
    color: #6b181f;
}

.footer-copy {
    font-size: 12px;
    color: #ccc;
    margin-top: 8px;
}
